@adminide-stack/core
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -8,2 +8,3 @@ export interface IWorkspace { | ||
spec: IWorkspaceSpec; | ||
config: IWorkspaceConfig; | ||
} | ||
@@ -31,2 +32,20 @@ export interface IWorkspaceCreateRequest { | ||
} | ||
export interface IWorkspaceConfig { | ||
id?: string; | ||
dnsName: string; | ||
dnsId?: string; | ||
container: string; | ||
ports?: IWorkspacePorts; | ||
} | ||
export interface IWorkspaceConfigPayload { | ||
container?: string; | ||
dnsId?: string; | ||
dnsName?: string; | ||
workspaceId?: string; | ||
status?: IWorkspaceStatus; | ||
} | ||
export interface IWorkspacePorts { | ||
application: string; | ||
socket: string; | ||
} | ||
export declare enum IWorkspaceStatus { | ||
@@ -33,0 +52,0 @@ WORKSPACE_STATUS_CONNECTED = 0, |
{ | ||
"name": "@adminide-stack/core", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "AdminIDE core for higher packages to depend on", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15262
202