fix(core): update
This commit is contained in:
8
ts/00_commitinfo_data.ts
Normal file
8
ts/00_commitinfo_data.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/**
|
||||
* autocreated commitinfo by @pushrocks/commitinfo
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@fin.cx/portablefinance',
|
||||
version: '1.0.16',
|
||||
description: 'an interface package for the financeplus organization'
|
||||
}
|
@ -1 +1 @@
|
||||
export * from './csvparser';
|
||||
export * from './csvparser.js';
|
||||
|
@ -1,2 +1,2 @@
|
||||
export * from './abstractclasses';
|
||||
export * from './interfaces';
|
||||
export * from './abstractclasses/index.js';
|
||||
export * from './interfaces/index.js';
|
||||
|
@ -1,3 +1,3 @@
|
||||
export * from './paymentaccount';
|
||||
export * from './transaction';
|
||||
export * from './voucher';
|
||||
export * from './paymentaccount.js';
|
||||
export * from './transaction.js';
|
||||
export * from './voucher.js';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { IVoucher } from './voucher';
|
||||
import { type IVoucher } from './voucher.js';
|
||||
|
||||
export interface IMonthlyCheckpoint {
|
||||
start: number;
|
||||
@ -6,8 +6,8 @@ export interface IMonthlyCheckpoint {
|
||||
pdfVoucher: IVoucher;
|
||||
}
|
||||
|
||||
export interface IFinplusPaymentAccount {
|
||||
finplusPaymentAccountId: string;
|
||||
export interface IPaymentAccount {
|
||||
id: string;
|
||||
data: {
|
||||
status: 'active' | 'inactive' | 'deleted';
|
||||
connectionData: {
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { IVoucher } from './voucher';
|
||||
import { type IVoucher } from './voucher.js';
|
||||
|
||||
export interface IFinplusTransaction {
|
||||
finplusTransactionId: string;
|
||||
export interface IMonetaryTransaction {
|
||||
id: string;
|
||||
data: {
|
||||
finplusPaymentAccountId: string;
|
||||
paymentAccountId: string;
|
||||
originTransactionId: string;
|
||||
originAccountId: string;
|
||||
additionalIds: string[];
|
||||
|
Reference in New Issue
Block a user