Compare commits

...

4 Commits

Author SHA1 Message Date
12c1d92ec4 1.0.99 2024-02-16 19:18:21 +01:00
4769548dad fix(core): update 2024-02-16 19:18:20 +01:00
1ebfa25695 1.0.98 2024-01-15 13:02:31 +01:00
e519ba6ebe fix(core): update 2024-01-15 13:02:30 +01:00
5 changed files with 608 additions and 588 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@design.estate/dees-document",
"version": "1.0.97",
"version": "1.0.99",
"private": false,
"description": "a catalog for creating documents like invoices",
"main": "dist_ts_web/index.js",
@ -19,25 +19,25 @@
"license": "MIT",
"dependencies": {
"@design.estate/dees-domtools": "^2.0.55",
"@design.estate/dees-element": "^2.0.32",
"@design.estate/dees-wcctools": "^1.0.76",
"@git.zone/tsrun": "^1.2.44",
"@push.rocks/smartfile": "^10.0.26",
"@design.estate/dees-element": "^2.0.33",
"@design.estate/dees-wcctools": "^1.0.85",
"@git.zone/tsrun": "^1.2.46",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smartjson": "^5.0.10",
"@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpdf": "^3.0.16",
"@push.rocks/smarttime": "^4.0.6",
"@tsclass/tsclass": "^4.0.46",
"@types/qrcode": "^1.5.4",
"@types/qrcode": "^1.5.5",
"qrcode": "^1.5.3"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tstest": "^1.0.77",
"@git.zone/tswatch": "^2.0.7",
"@push.rocks/projectinfo": "^5.0.1",
"@push.rocks/tapbundle": "^5.0.8"
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
"@git.zone/tstest": "^1.0.84",
"@git.zone/tswatch": "^2.0.21",
"@push.rocks/projectinfo": "^5.0.2",
"@push.rocks/tapbundle": "^5.0.15"
},
"files": [
"ts/**/*",

1159
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-document',
version: '1.0.97',
version: '1.0.99',
description: 'a catalog for creating documents like invoices'
}

View File

@ -10,6 +10,13 @@ export interface IPdfServiceConstructorOptions {
* a pdf service for generating pdfs
*/
export class PdfService {
// STATIC
public static async createAndStart(optionsArg: IPdfServiceConstructorOptions) {
const pdfService = new PdfService(optionsArg);
await pdfService.start();
return pdfService;
}
// INSTANCE
options: IPdfServiceConstructorOptions;

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-document',
version: '1.0.97',
version: '1.0.99',
description: 'a catalog for creating documents like invoices'
}