Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
f1b62ce326 | |||
662909a84b | |||
10c7111cbb | |||
ae8c091f2d | |||
2026a84865 | |||
6f0a8dcfac | |||
7d148166c3 | |||
cd380c9791 |
23335
package-lock.json
generated
23335
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
12
package.json
12
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "3.0.35",
|
||||
"version": "3.0.39",
|
||||
"private": false,
|
||||
"description": "common classes for TypeScript",
|
||||
"main": "dist_ts/index.js",
|
||||
@ -24,13 +24,13 @@
|
||||
},
|
||||
"homepage": "https://github.com/tsclass/tsclass#readme",
|
||||
"dependencies": {
|
||||
"@pushrocks/tapbundle": "^3.2.9",
|
||||
"type-fest": "^0.16.0"
|
||||
"type-fest": "^2.8.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@gitzone/tsbuild": "^2.1.25",
|
||||
"@gitzone/tsrun": "^1.2.12",
|
||||
"@gitzone/tstest": "^1.0.44",
|
||||
"@gitzone/tsbuild": "^2.1.28",
|
||||
"@gitzone/tsrun": "^1.2.18",
|
||||
"@gitzone/tstest": "^1.0.60",
|
||||
"@pushrocks/tapbundle": "^3.2.15",
|
||||
"tslint": "^6.1.3",
|
||||
"tslint-config-prettier": "^1.18.0"
|
||||
},
|
||||
|
@ -1,4 +1,5 @@
|
||||
export * from './address';
|
||||
export * from './company';
|
||||
export * from './contact';
|
||||
export * from './letter';
|
||||
export * from './person';
|
||||
|
16
ts/business/letter.ts
Normal file
16
ts/business/letter.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import * as business from './';
|
||||
import * as finance from '../finance';
|
||||
export interface ILetter {
|
||||
incidenceId: string;
|
||||
from: business.IAddress;
|
||||
to: business.IAddress;
|
||||
subject: string;
|
||||
text: string[];
|
||||
invoice?: finance.IInvoice;
|
||||
contractRef: string;
|
||||
timesheetRef: string;
|
||||
pdfAttachments: Uint8Array[];
|
||||
legalContact: business.IContact;
|
||||
language: string;
|
||||
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
export interface IContainerImage {
|
||||
export interface IContainer {
|
||||
registryUrl: string;
|
||||
tag: string;
|
||||
/**
|
||||
|
Reference in New Issue
Block a user