fix(core): update

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

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@tsclass/tsclass',
version: '4.0.45',
version: '4.0.46',
description: 'common classes for TypeScript'
}

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;