fix(core): update

This commit is contained in:
2023-11-16 02:09:48 +01:00
parent c7ce7af521
commit 49bc354d01
19 changed files with 5958 additions and 12934 deletions

View File

@ -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';

View File

@ -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: {

View File

@ -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[];