Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
14314ee394 | |||
44b849bf86 | |||
b985bf1d30 | |||
7f29739ca0 | |||
c453dc9001 | |||
cd4127da73 | |||
ab5f8bf470 | |||
968219384d | |||
dd5ca4b3f1 | |||
3c99bfe922 | |||
4f62bfb622 | |||
5f00526a7c | |||
0c1b9b3345 | |||
b32d64e5f2 |
29
.vscode/launch.json
vendored
Normal file
29
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "current file",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"args": [
|
||||||
|
"${relativeFile}"
|
||||||
|
],
|
||||||
|
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"protocol": "inspector",
|
||||||
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "test.ts",
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"args": [
|
||||||
|
"test/test.ts"
|
||||||
|
],
|
||||||
|
"runtimeArgs": ["-r", "@gitzone/tsrun"],
|
||||||
|
"cwd": "${workspaceRoot}",
|
||||||
|
"protocol": "inspector",
|
||||||
|
"internalConsoleOptions": "openOnSessionStart"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
.vscode/settings.json
vendored
Normal file
26
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"json.schemas": [
|
||||||
|
{
|
||||||
|
"fileMatch": ["/npmextra.json"],
|
||||||
|
"schema": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"npmci": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for npmci"
|
||||||
|
},
|
||||||
|
"gitzone": {
|
||||||
|
"type": "object",
|
||||||
|
"description": "settings for gitzone",
|
||||||
|
"properties": {
|
||||||
|
"projectType": {
|
||||||
|
"type": "string",
|
||||||
|
"enum": ["website", "element", "service", "npm"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
},
|
},
|
||||||
"gitzone": {
|
"gitzone": {
|
||||||
|
"projectType": "npm",
|
||||||
"module": {
|
"module": {
|
||||||
"githost": "gitlab.com",
|
"githost": "gitlab.com",
|
||||||
"gitscope": "tsclass",
|
"gitscope": "tsclass",
|
||||||
|
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "3.0.5",
|
"version": "3.0.12",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "3.0.5",
|
"version": "3.0.12",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "common classes for TypeScript",
|
"description": "common classes for TypeScript",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@ -8,7 +8,7 @@ common classes for TypeScript
|
|||||||
* [docs (typedoc)](https://tsclass.gitlab.io/tsclass/)
|
* [docs (typedoc)](https://tsclass.gitlab.io/tsclass/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/tsclass/tsclass/commits/master)
|
[](https://gitlab.com/tsclass/tsclass/commits/master)
|
||||||
[](https://gitlab.com/tsclass/tsclass/commits/master)
|
[](https://gitlab.com/tsclass/tsclass/commits/master)
|
||||||
[](https://www.npmjs.com/package/@tsclass/tsclass)
|
[](https://www.npmjs.com/package/@tsclass/tsclass)
|
||||||
[](https://snyk.io/test/npm/@tsclass/tsclass)
|
[](https://snyk.io/test/npm/@tsclass/tsclass)
|
||||||
@ -49,7 +49,6 @@ class myOwnInvoice implements IInvoice {
|
|||||||
|
|
||||||
> The modules in bold letters exist as own modules and can be used seperately
|
> The modules in bold letters exist as own modules and can be used seperately
|
||||||
|
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
|
||||||
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
||||||
|
@ -19,8 +19,13 @@ export interface IContact {
|
|||||||
address: business.IAddress;
|
address: business.IAddress;
|
||||||
description: string;
|
description: string;
|
||||||
customerNumber?: string;
|
customerNumber?: string;
|
||||||
|
|
||||||
email?: string;
|
email?: string;
|
||||||
|
|
||||||
|
logoUrl?: string;
|
||||||
|
website?: string;
|
||||||
|
facebookUrl?: string;
|
||||||
|
twitterUrl?: string;
|
||||||
|
|
||||||
phone?: string;
|
phone?: string;
|
||||||
fax?: string;
|
fax?: string;
|
||||||
|
|
||||||
|
5
ts/container/container.ts
Normal file
5
ts/container/container.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export interface IContainer {
|
||||||
|
registryUrl: string;
|
||||||
|
tag: string;
|
||||||
|
version: string;
|
||||||
|
}
|
1
ts/container/index.ts
Normal file
1
ts/container/index.ts
Normal file
@ -0,0 +1 @@
|
|||||||
|
export * from './container';
|
@ -1,6 +1,9 @@
|
|||||||
// Business
|
// Business
|
||||||
import * as business from './business';
|
import * as business from './business';
|
||||||
|
|
||||||
|
// Container
|
||||||
|
import * as container from './container';
|
||||||
|
|
||||||
// Finance
|
// Finance
|
||||||
import * as finance from './finance';
|
import * as finance from './finance';
|
||||||
|
|
||||||
@ -13,4 +16,4 @@ import * as general from './general';
|
|||||||
// Network
|
// Network
|
||||||
import * as network from './network';
|
import * as network from './network';
|
||||||
|
|
||||||
export { business, finance, content, general, network };
|
export { business, container, finance, content, general, network };
|
||||||
|
@ -13,8 +13,8 @@ export type TDnsRecordType =
|
|||||||
| 'TXT';
|
| 'TXT';
|
||||||
|
|
||||||
export interface IDnsRecord {
|
export interface IDnsRecord {
|
||||||
chunked?: string[];
|
|
||||||
name: string;
|
name: string;
|
||||||
type: TDnsRecordType;
|
type: TDnsRecordType;
|
||||||
value: string;
|
value: string;
|
||||||
|
dnsSecEnabled: boolean;
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export interface IDnsChallenge {
|
export interface IDnsChallenge {
|
||||||
hostName: string;
|
hostName: string;
|
||||||
challenge: string;
|
challenge: string;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user