This commit is contained in:
insanity 2018-06-14 11:05:57 +09:00
parent 349acd61a5
commit fe40e8bbef
5 changed files with 4 additions and 5 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@overflow/commons-typescript",
"version": "0.0.9",
"version": "0.0.11",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -2,7 +2,7 @@
"name": "@overflow/commons-typescript",
"author": "Loafle <rnd@loafle.com>",
"description": "Commons module of overflow",
"version": "0.0.10",
"version": "0.0.11",
"license": "COMMERCIAL",
"private": true,
"main": "./index.js",

View File

@ -7,7 +7,7 @@ export interface NoAuthProbe {
domain?: Domain;
probe?: Probe;
metaNoAuthProbeStatus?: MetaNoAuthProbeStatus;
description?: string;
infraHostMeta?: string;
tempProbeKey?: string;
apiKey?: string;
connectDate?: Date;

View File

@ -1,2 +1 @@
export * from './NoAuthProbe';
export * from './NoAuthProbeDescription';

View File

@ -6,7 +6,6 @@ export interface Probe {
id?: number;
metaProbeStatus?: MetaProbeStatus;
description?: string;
createDate?: Date;
domain?: Domain;
probeKey?: string;
encryptionKey?: string;
@ -17,4 +16,5 @@ export interface Probe {
targetCount?: number;
connectDate?: Date;
connectAddress?: string;
createDate?: Date;
}