Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
2f95b5d2ef | |||
c1f22e0cb1 | |||
5c430fddfc | |||
f9478aa3c2 | |||
055b85c7c4 | |||
5730d87b0c | |||
610fda5f36 | |||
e206405d70 | |||
fdc63b0f4f | |||
4307bb68a7 | |||
5c60875d46 | |||
0a5443c646 | |||
f38274e325 | |||
800123586e |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.35",
|
"version": "4.0.42",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "common classes for TypeScript",
|
"description": "common classes for TypeScript",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@tsclass/tsclass',
|
name: '@tsclass/tsclass',
|
||||||
version: '4.0.35',
|
version: '4.0.42',
|
||||||
description: 'common classes for TypeScript'
|
description: 'common classes for TypeScript'
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,9 @@ export type TCompanyStatus = 'planed' | 'founding' | 'active' | 'liquidation' |
|
|||||||
*/
|
*/
|
||||||
export interface ICompany {
|
export interface ICompany {
|
||||||
name: string;
|
name: string;
|
||||||
|
slogan?: string;
|
||||||
|
description?: string;
|
||||||
|
logoLink?: string;
|
||||||
foundedDate: general.IDate;
|
foundedDate: general.IDate;
|
||||||
closedDate: general.IDate;
|
closedDate: general.IDate;
|
||||||
status: business.TCompanyStatus;
|
status: business.TCompanyStatus;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export type TStatus = 'ok' | 'partly ok' | 'not ok';
|
export type TStatus = 'ok' | 'partly_ok' | 'not_ok';
|
||||||
export interface IStatusObject {
|
export interface IStatusObject {
|
||||||
id?: string;
|
id?: string;
|
||||||
name: string;
|
name: string;
|
||||||
|
31
ts/network/domaindelegation.ts
Normal file
31
ts/network/domaindelegation.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
export interface IDomainDelegation {
|
||||||
|
/**
|
||||||
|
* only if it applis: the origininating url
|
||||||
|
*/
|
||||||
|
fullUrl: string;
|
||||||
|
/**
|
||||||
|
* the full domain name
|
||||||
|
*/
|
||||||
|
fullDomain: string;
|
||||||
|
/**
|
||||||
|
* the domain, meaning whats usually considered a domain like google.com
|
||||||
|
*/
|
||||||
|
domain: string;
|
||||||
|
/**
|
||||||
|
* the public suffix, meaning whats usually considered a public suffix like .com
|
||||||
|
*/
|
||||||
|
publicSuffix: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the domain without the public suffix
|
||||||
|
*/
|
||||||
|
domainWithoutSuffix: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the subdomain, meaning whats usually considered a subdomain like www
|
||||||
|
*/
|
||||||
|
subdomain: string;
|
||||||
|
|
||||||
|
isIcann?: boolean;
|
||||||
|
dnsSecEnabled?: boolean;
|
||||||
|
}
|
@ -3,6 +3,7 @@ export * from './cname.js';
|
|||||||
export * from './device.js';
|
export * from './device.js';
|
||||||
export * from './dns.js';
|
export * from './dns.js';
|
||||||
export * from './dnschallenge.js';
|
export * from './dnschallenge.js';
|
||||||
|
export * from './domaindelegation.js';
|
||||||
export * from './networknode.js';
|
export * from './networknode.js';
|
||||||
export * from './request.js';
|
export * from './request.js';
|
||||||
export * from './reverseproxy.js';
|
export * from './reverseproxy.js';
|
||||||
|
@ -1 +1,14 @@
|
|||||||
export interface IProduct {}
|
import { ICompany } from "../business/company.js";
|
||||||
|
|
||||||
|
export interface IProduct {
|
||||||
|
name: string;
|
||||||
|
slogan: string;
|
||||||
|
description: string;
|
||||||
|
os: 'web-based',
|
||||||
|
category: 'Business Application',
|
||||||
|
offers: any[];
|
||||||
|
landingPage: string;
|
||||||
|
appLink: string;
|
||||||
|
logoLink: string;
|
||||||
|
publisher?: ICompany;
|
||||||
|
}
|
Reference in New Issue
Block a user