Compare commits

...

6 Commits

Author SHA1 Message Date
45e8460474 4.0.17 2022-06-16 12:25:27 +02:00
15bbb6ee22 fix(core): update 2022-06-16 12:25:26 +02:00
7bf736ec75 4.0.16 2022-06-15 22:37:40 +02:00
a43113860a fix(core): update 2022-06-15 22:37:40 +02:00
76cff5259b 4.0.15 2022-06-15 21:55:57 +02:00
34b49123e1 fix(core): update 2022-06-15 21:55:57 +02:00
7 changed files with 12 additions and 8 deletions

4
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{
"name": "@tsclass/tsclass",
"version": "4.0.14",
"version": "4.0.17",
"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.14',
version: '4.0.17',
description: 'common classes for TypeScript'
}

View File

@ -19,8 +19,8 @@ export interface ILetter {
contractDate: number;
};
timesheetData: string;
pdfBuffer?: business.IPdf;
pdfAttachmentBuffers: business.IPdf[];
pdf?: business.IPdf;
pdfAttachments: business.IPdf[];
language: string;
objectActions: database.IObjectAction[];
}

View File

@ -4,5 +4,5 @@ export interface IPdf {
metadata: {
textExtraction: string;
};
buffer: Buffer;
buffer: ArrayBufferLike;
}

View File

@ -1,2 +1,3 @@
export * from './mongodescriptor.js';
export * from './objectaction.js';
export * from './objectaction.js';
export * from './wrappeddata.js'

View File

@ -0,0 +1,3 @@
export interface IWrappedData<T> {
data: T;
}