Compare commits

...

6 Commits

Author SHA1 Message Date
55d5e89bb8 4.0.8 2022-06-12 19:29:28 +02:00
5838948117 fix(core): update 2022-06-12 19:29:27 +02:00
e5e3562eef 4.0.7 2022-06-11 12:56:39 +02:00
d081dc4b98 fix(core): update 2022-06-11 12:56:39 +02:00
ee9efae18d 4.0.6 2022-06-10 13:38:20 +02:00
df39fcbe37 fix(core): update 2022-06-10 13:38:20 +02:00
6 changed files with 10 additions and 9 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.5",
"version": "4.0.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@tsclass/tsclass",
"version": "4.0.5",
"version": "4.0.8",
"license": "MIT",
"dependencies": {
"type-fest": "^2.13.0"

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.5",
"version": "4.0.8",
"private": false,
"description": "common classes for TypeScript",
"main": "dist_ts/index.js",

View File

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

View File

@ -6,9 +6,9 @@ export interface ILetter {
from: business.IContact;
to: business.IContact;
logoUrl: string;
accentColor: string;
subject: string;
text: string[];
accentColor?: string;
invoiceData?: finance.IInvoice;
contractData?: {
id: string;

View File

@ -1,9 +1,10 @@
import { content } from '../index.js';
/**
* a general content article
* can be news, can be a productdescription,
* can be anything that has text with a title
* a general content article:
* * can be news
* * can be a productdescription,
* * can be anything that has text with a title
*/
export interface IArticle<T = any> {
/**

View File

@ -1,5 +1,5 @@
/**
* a constract event describes any kind of sale
* a contract event describes any kind of sale
*/
export interface IEvent_Contract {
contractId: string;