fix(core): update

This commit is contained in:
2023-10-15 12:26:01 +02:00
parent 5fd5fc501f
commit 310d60a84e
2 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,13 @@ import * as business from './index.js';
import * as finance from '../finance/index.js';
import * as database from '../database/index.js';
export interface ILetter {
versionInfo: {
type: 'draft' | 'final';
/**
* should follow semVer
*/
version: string;
};
incidenceId: string;
type: 'invoice' | 'notice' | 'warning' | 'verification' | 'contract';
date: number;