Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
5c430fddfc | |||
f9478aa3c2 | |||
055b85c7c4 | |||
5730d87b0c | |||
610fda5f36 | |||
e206405d70 | |||
fdc63b0f4f | |||
4307bb68a7 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.0.37",
|
"version": "4.0.41",
|
||||||
"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.37',
|
version: '4.0.41',
|
||||||
description: 'common classes for TypeScript'
|
description: 'common classes for TypeScript'
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
export interface IDomainIdentifier {
|
export interface IDomainDelegation {
|
||||||
/**
|
/**
|
||||||
* only if it applis: the origininating url
|
* only if it applis: the origininating url
|
||||||
*/
|
*/
|
||||||
@ -15,8 +15,17 @@ export interface IDomainIdentifier {
|
|||||||
* the public suffix, meaning whats usually considered a public suffix like .com
|
* the public suffix, meaning whats usually considered a public suffix like .com
|
||||||
*/
|
*/
|
||||||
publicSuffix: string;
|
publicSuffix: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the domain without the public suffix
|
||||||
|
*/
|
||||||
|
domainWithoutSuffix: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the subdomain, meaning whats usually considered a subdomain like www
|
* the subdomain, meaning whats usually considered a subdomain like www
|
||||||
*/
|
*/
|
||||||
subdomain: string;
|
subdomain: string;
|
||||||
|
|
||||||
|
isIcann?: boolean;
|
||||||
|
dnsSecEnabled?: boolean;
|
||||||
}
|
}
|
@ -3,7 +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 './domainidentifier.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