@eclipse-che/api
Advanced tools
Comparing version 6.17.0 to 6.17.1
708
index.d.ts
@@ -6,2 +6,8 @@ // File has been generated automatically by Eclipse Che TypeScript DTO generator | ||
// org.eclipse.che.api.workspace.shared.dto.stack.StackComponentDto | ||
export interface StackComponent { | ||
name?: string; | ||
version?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.stack.StackDto | ||
@@ -20,18 +26,50 @@ export interface Stack extends che.core.rest.Hyperlinks { | ||
// org.eclipse.che.api.workspace.shared.dto.stack.StackComponentDto | ||
export interface StackComponent { | ||
} | ||
export namespace che.project { | ||
// org.eclipse.che.api.project.shared.dto.ProjectSearchRequestDto | ||
export interface ProjectSearchRequest { | ||
path?: string; | ||
maxItems?: number; | ||
name?: string; | ||
version?: string; | ||
text?: string; | ||
skipCount?: number; | ||
} | ||
} | ||
// org.eclipse.che.api.project.shared.dto.SearchOccurrenceDto | ||
export interface SearchOccurrence { | ||
score?: number; | ||
endOffset?: number; | ||
startOffset?: number; | ||
phrase?: string; | ||
lineNumber?: number; | ||
lineContent?: string; | ||
} | ||
export namespace che.project { | ||
// org.eclipse.che.api.project.shared.dto.CopyOptions | ||
export interface CopyOptions { | ||
name?: string; | ||
overWrite?: boolean; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ProjectSearchResponseDto | ||
export interface ProjectSearchResponse { | ||
itemReferences?: SearchResult[]; | ||
totalHits?: number; | ||
// org.eclipse.che.api.project.shared.dto.ProjectImporterData | ||
export interface ProjectImporterData { | ||
importers?: ProjectImporterDescriptor[]; | ||
configuration?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.MoveOptions | ||
export interface MoveOptions { | ||
name?: string; | ||
overWrite?: boolean; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ValueDto | ||
export interface Value { | ||
string?: string; | ||
list?: string[]; | ||
empty?: boolean; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ProjectUpdate | ||
@@ -48,2 +86,8 @@ export interface ProjectUpdate { | ||
// org.eclipse.che.api.project.shared.dto.ProjectSearchResponseDto | ||
export interface ProjectSearchResponse { | ||
itemReferences?: SearchResult[]; | ||
totalHits?: number; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.EditorChangesDto | ||
@@ -60,2 +104,26 @@ export interface EditorChanges { | ||
// org.eclipse.che.api.project.shared.dto.ProjectImporterDescriptor | ||
export interface ProjectImporterDescriptor { | ||
internal?: boolean; | ||
description?: string; | ||
attributes?: { [key: string]: string; }; | ||
id?: string; | ||
category?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.AttributeDescriptor | ||
export interface AttributeDescriptor { | ||
values?: string[]; | ||
variable?: boolean; | ||
name?: string; | ||
description?: string; | ||
required?: boolean; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.TreeElement | ||
export interface TreeElement { | ||
node?: ItemReference; | ||
children?: TreeElement[]; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.SourceEstimation | ||
@@ -69,18 +137,2 @@ export interface SourceEstimation { | ||
// org.eclipse.che.api.project.shared.dto.ProjectImporterData | ||
export interface ProjectImporterData { | ||
importers?: ProjectImporterDescriptor[]; | ||
configuration?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.SearchOccurrenceDto | ||
export interface SearchOccurrence { | ||
score?: number; | ||
endOffset?: number; | ||
startOffset?: number; | ||
phrase?: string; | ||
lineNumber?: number; | ||
lineContent?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.SearchResultDto | ||
@@ -92,12 +144,28 @@ export interface SearchResult { | ||
// org.eclipse.che.api.project.shared.dto.TreeElement | ||
export interface TreeElement { | ||
node?: ItemReference; | ||
children?: TreeElement[]; | ||
// org.eclipse.che.api.project.shared.dto.RegisteredProjectDto | ||
export interface RegisteredProject extends che.workspace.ProjectConfig { | ||
synced?: boolean; | ||
description?: string; | ||
source?: che.workspace.SourceStorage; | ||
type?: string; | ||
persistableAttributes?: { [key: string]: string[]; }; | ||
path?: string; | ||
mixins?: string[]; | ||
baseFolder?: string; | ||
name?: string; | ||
detected?: boolean; | ||
attributes?: { [key: string]: string[]; }; | ||
links?: che.core.rest.Link[]; | ||
problems?: che.workspace.ProjectProblem[]; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ServerError | ||
export interface ServerError { | ||
code?: number; | ||
message?: string; | ||
// org.eclipse.che.api.project.shared.dto.AttributeDto | ||
export interface Attribute { | ||
name?: string; | ||
variable?: boolean; | ||
projectType?: string; | ||
description?: string; | ||
id?: string; | ||
value?: Value; | ||
required?: boolean; | ||
} | ||
@@ -132,19 +200,15 @@ | ||
// org.eclipse.che.api.project.shared.dto.CopyOptions | ||
export interface CopyOptions { | ||
name?: string; | ||
overWrite?: boolean; | ||
// org.eclipse.che.api.project.shared.dto.ServerError | ||
export interface ServerError { | ||
code?: number; | ||
message?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.MoveOptions | ||
export interface MoveOptions { | ||
name?: string; | ||
overWrite?: boolean; | ||
// org.eclipse.che.api.project.shared.dto.ImportProgressRecordDto | ||
export interface ImportProgressRecord { | ||
line?: string; | ||
num?: number; | ||
projectName?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.GeneratorDescription | ||
export interface GeneratorDescription { | ||
options?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ProjectTypeDto | ||
@@ -162,71 +226,17 @@ export interface ProjectType { | ||
// org.eclipse.che.api.project.shared.dto.ValueDto | ||
export interface Value { | ||
string?: string; | ||
list?: string[]; | ||
empty?: boolean; | ||
// org.eclipse.che.api.project.shared.dto.GeneratorDescription | ||
export interface GeneratorDescription { | ||
options?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ImportProgressRecordDto | ||
export interface ImportProgressRecord { | ||
line?: string; | ||
num?: number; | ||
projectName?: string; | ||
} | ||
} | ||
// org.eclipse.che.api.project.shared.dto.AttributeDescriptor | ||
export interface AttributeDescriptor { | ||
values?: string[]; | ||
variable?: boolean; | ||
name?: string; | ||
description?: string; | ||
required?: boolean; | ||
} | ||
export namespace che.core.notification { | ||
// org.eclipse.che.api.project.shared.dto.AttributeDto | ||
export interface Attribute { | ||
name?: string; | ||
variable?: boolean; | ||
projectType?: string; | ||
description?: string; | ||
id?: string; | ||
value?: Value; | ||
required?: boolean; | ||
// org.eclipse.che.api.core.notification.dto.EventSubscription | ||
export interface EventSubscription { | ||
method?: string; | ||
scope?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ProjectSearchRequestDto | ||
export interface ProjectSearchRequest { | ||
path?: string; | ||
maxItems?: number; | ||
name?: string; | ||
text?: string; | ||
skipCount?: number; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.ProjectImporterDescriptor | ||
export interface ProjectImporterDescriptor { | ||
internal?: boolean; | ||
description?: string; | ||
attributes?: { [key: string]: string; }; | ||
id?: string; | ||
category?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.RegisteredProjectDto | ||
export interface RegisteredProject extends che.workspace.ProjectConfig { | ||
synced?: boolean; | ||
description?: string; | ||
source?: che.workspace.SourceStorage; | ||
type?: string; | ||
persistableAttributes?: { [key: string]: string[]; }; | ||
path?: string; | ||
mixins?: string[]; | ||
baseFolder?: string; | ||
name?: string; | ||
detected?: boolean; | ||
attributes?: { [key: string]: string[]; }; | ||
links?: che.core.rest.Link[]; | ||
problems?: che.workspace.ProjectProblem[]; | ||
} | ||
} | ||
@@ -256,12 +266,2 @@ | ||
export namespace che.core.notification { | ||
// org.eclipse.che.api.core.notification.dto.EventSubscription | ||
export interface EventSubscription { | ||
method?: string; | ||
scope?: { [key: string]: string; }; | ||
} | ||
} | ||
export namespace che.workspace.event { | ||
@@ -273,4 +273,4 @@ | ||
stream?: 'STDOUT' | 'STDERR'; | ||
time?: string; | ||
text?: string; | ||
time?: string; | ||
machineName?: string; | ||
@@ -280,20 +280,33 @@ runtimeId?: che.workspace.RuntimeIdentity; | ||
// org.eclipse.che.api.workspace.shared.dto.event.RuntimeLogEvent | ||
export interface RuntimeLogEvent { | ||
stream?: string; | ||
text?: string; | ||
time?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.event.MachineStatusEvent | ||
export interface MachineStatusEvent { | ||
identity?: che.workspace.RuntimeIdentity; | ||
eventType?: 'STARTING' | 'RUNNING' | 'STOPPED' | 'FAILED'; | ||
error?: string; | ||
machineName?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.BrokerStatusChangedEvent | ||
export interface BrokerStatusChangedEvent { | ||
tooling?: string; | ||
error?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
status?: 'STARTED' | 'DONE' | 'FAILED'; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.RuntimeStatusEvent | ||
export interface RuntimeStatusEvent { | ||
prevStatus?: string; | ||
identity?: che.workspace.RuntimeIdentity; | ||
failed?: boolean; | ||
// org.eclipse.che.api.workspace.shared.dto.event.WorkspaceStatusEvent | ||
export interface WorkspaceStatusEvent { | ||
prevStatus?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
error?: string; | ||
status?: string; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
workspaceId?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.BrokerLogEvent | ||
export interface BrokerLogEvent { | ||
time?: string; | ||
text?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.BootstrapperStatusEvent | ||
@@ -308,8 +321,9 @@ export interface BootstrapperStatusEvent { | ||
// org.eclipse.che.api.workspace.shared.dto.event.MachineStatusEvent | ||
export interface MachineStatusEvent { | ||
identity?: che.workspace.RuntimeIdentity; | ||
eventType?: 'STARTING' | 'RUNNING' | 'STOPPED' | 'FAILED'; | ||
error?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.event.MachineLogEvent | ||
export interface MachineLogEvent { | ||
stream?: string; | ||
time?: string; | ||
text?: string; | ||
machineName?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
} | ||
@@ -326,32 +340,16 @@ | ||
// org.eclipse.che.api.workspace.shared.dto.event.InstallerStatusEvent | ||
export interface InstallerStatusEvent { | ||
installer?: string; | ||
time?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.event.RuntimeStatusEvent | ||
export interface RuntimeStatusEvent { | ||
identity?: che.workspace.RuntimeIdentity; | ||
prevStatus?: string; | ||
failed?: boolean; | ||
error?: string; | ||
machineName?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
status?: 'STARTING' | 'RUNNING' | 'DONE' | 'FAILED'; | ||
status?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.BrokerLogEvent | ||
export interface BrokerLogEvent { | ||
text?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.event.RuntimeLogEvent | ||
export interface RuntimeLogEvent { | ||
stream?: string; | ||
time?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.WorkspaceStatusEvent | ||
export interface WorkspaceStatusEvent { | ||
prevStatus?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
error?: string; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
workspaceId?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.event.MachineLogEvent | ||
export interface MachineLogEvent { | ||
stream?: string; | ||
text?: string; | ||
time?: string; | ||
machineName?: string; | ||
@@ -361,8 +359,10 @@ runtimeId?: che.workspace.RuntimeIdentity; | ||
// org.eclipse.che.api.workspace.shared.dto.event.BrokerStatusChangedEvent | ||
export interface BrokerStatusChangedEvent { | ||
tooling?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.event.InstallerStatusEvent | ||
export interface InstallerStatusEvent { | ||
installer?: string; | ||
time?: string; | ||
error?: string; | ||
machineName?: string; | ||
runtimeId?: che.workspace.RuntimeIdentity; | ||
status?: 'STARTED' | 'DONE' | 'FAILED'; | ||
status?: 'STARTING' | 'RUNNING' | 'DONE' | 'FAILED'; | ||
} | ||
@@ -374,2 +374,15 @@ | ||
// org.eclipse.che.api.core.rest.shared.dto.ServiceError | ||
export interface ServiceError { | ||
message?: string; | ||
} | ||
// org.eclipse.che.api.core.rest.shared.dto.ServiceDescriptor | ||
export interface ServiceDescriptor extends Hyperlinks { | ||
description?: string; | ||
links?: Link[]; | ||
href?: string; | ||
version?: string; | ||
} | ||
// org.eclipse.che.api.core.rest.shared.dto.LinkParameter | ||
@@ -385,2 +398,9 @@ export interface LinkParameter { | ||
// org.eclipse.che.api.core.rest.shared.dto.ExtendedError | ||
export interface ExtendedError extends ServiceError { | ||
errorCode?: number; | ||
attributes?: { [key: string]: string; }; | ||
message?: string; | ||
} | ||
// org.eclipse.che.api.core.rest.shared.dto.ApiInfo | ||
@@ -397,10 +417,2 @@ export interface ApiInfo { | ||
// org.eclipse.che.api.core.rest.shared.dto.ServiceDescriptor | ||
export interface ServiceDescriptor extends Hyperlinks { | ||
description?: string; | ||
links?: Link[]; | ||
href?: string; | ||
version?: string; | ||
} | ||
// org.eclipse.che.api.core.rest.shared.dto.Hyperlinks | ||
@@ -427,14 +439,2 @@ export interface Hyperlinks { | ||
// org.eclipse.che.api.core.rest.shared.dto.ExtendedError | ||
export interface ExtendedError extends ServiceError { | ||
errorCode?: number; | ||
attributes?: { [key: string]: string; }; | ||
message?: string; | ||
} | ||
// org.eclipse.che.api.core.rest.shared.dto.ServiceError | ||
export interface ServiceError { | ||
message?: string; | ||
} | ||
} | ||
@@ -444,6 +444,5 @@ | ||
// org.eclipse.che.api.project.shared.dto.service.CreateBatchProjectsRequestDto | ||
export interface CreateBatchProjectsRequest { | ||
newProjectConfigs?: che.project.NewProjectConfig[]; | ||
rewrite?: boolean; | ||
// org.eclipse.che.api.project.shared.dto.service.VerifyResponseDto | ||
export interface VerifyResponse { | ||
sourceEstimation?: che.project.SourceEstimation; | ||
} | ||
@@ -456,7 +455,20 @@ | ||
// org.eclipse.che.api.project.shared.dto.service.DeleteResponseDto | ||
export interface DeleteResponse { | ||
// org.eclipse.che.api.project.shared.dto.service.CreateBatchProjectsRequestDto | ||
export interface CreateBatchProjectsRequest { | ||
newProjectConfigs?: che.project.NewProjectConfig[]; | ||
rewrite?: boolean; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.CreateRequestDto | ||
export interface CreateRequest { | ||
options?: { [key: string]: string; }; | ||
wsPath?: string; | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.RecognizeRequestDto | ||
export interface RecognizeRequest { | ||
wsPath?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.VerifyRequestDto | ||
@@ -468,17 +480,12 @@ export interface VerifyRequest { | ||
// org.eclipse.che.api.project.shared.dto.service.ImportResponseDto | ||
export interface ImportResponse { | ||
// org.eclipse.che.api.project.shared.dto.service.CreateResponseDto | ||
export interface CreateResponse { | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.UpdateResponseDto | ||
export interface UpdateResponse { | ||
// org.eclipse.che.api.project.shared.dto.service.ImportResponseDto | ||
export interface ImportResponse { | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.VerifyResponseDto | ||
export interface VerifyResponse { | ||
sourceEstimation?: che.project.SourceEstimation; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.ImportRequestDto | ||
@@ -490,12 +497,17 @@ export interface ImportRequest { | ||
// org.eclipse.che.api.project.shared.dto.service.CreateRequestDto | ||
export interface CreateRequest { | ||
options?: { [key: string]: string; }; | ||
wsPath?: string; | ||
// org.eclipse.che.api.project.shared.dto.service.UpdateResponseDto | ||
export interface UpdateResponse { | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.RecognizeRequestDto | ||
export interface RecognizeRequest { | ||
// org.eclipse.che.api.project.shared.dto.service.DeleteResponseDto | ||
export interface DeleteResponse { | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.UpdateRequestDto | ||
export interface UpdateRequest { | ||
options?: { [key: string]: string; }; | ||
wsPath?: string; | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
@@ -508,7 +520,2 @@ | ||
// org.eclipse.che.api.project.shared.dto.service.GetRequestDto | ||
export interface GetRequest { | ||
wsPath?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.DeleteRequestDto | ||
@@ -519,14 +526,7 @@ export interface DeleteRequest { | ||
// org.eclipse.che.api.project.shared.dto.service.UpdateRequestDto | ||
export interface UpdateRequest { | ||
options?: { [key: string]: string; }; | ||
// org.eclipse.che.api.project.shared.dto.service.GetRequestDto | ||
export interface GetRequest { | ||
wsPath?: string; | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.service.CreateResponseDto | ||
export interface CreateResponse { | ||
config?: che.workspace.ProjectConfig; | ||
} | ||
} | ||
@@ -536,2 +536,29 @@ | ||
// org.eclipse.che.api.factory.shared.dto.PoliciesDto | ||
export interface Policies { | ||
referer?: string; | ||
create?: string; | ||
until?: number; | ||
since?: number; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.FactoryDto | ||
export interface Factory extends che.core.rest.Hyperlinks { | ||
button?: Button; | ||
workspace?: che.workspace.WorkspaceConfig; | ||
creator?: Author; | ||
v?: string; | ||
name?: string; | ||
policies?: Policies; | ||
links?: che.core.rest.Link[]; | ||
id?: string; | ||
ide?: Ide; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.ButtonDto | ||
export interface Button { | ||
attributes?: ButtonAttributes; | ||
type?: 'logo' | 'nologo'; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.OnProjectsLoadedDto | ||
@@ -547,10 +574,2 @@ export interface OnProjectsLoaded { | ||
// org.eclipse.che.api.factory.shared.dto.PoliciesDto | ||
export interface Policies { | ||
referer?: string; | ||
create?: string; | ||
until?: number; | ||
since?: number; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.ButtonAttributesDto | ||
@@ -572,8 +591,2 @@ export interface ButtonAttributes { | ||
// org.eclipse.che.api.factory.shared.dto.IdeActionDto | ||
export interface IdeAction { | ||
id?: string; | ||
properties?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.OnAppLoadedDto | ||
@@ -591,19 +604,6 @@ export interface OnAppLoaded { | ||
// org.eclipse.che.api.factory.shared.dto.ButtonDto | ||
export interface Button { | ||
attributes?: ButtonAttributes; | ||
type?: 'logo' | 'nologo'; | ||
} | ||
// org.eclipse.che.api.factory.shared.dto.FactoryDto | ||
export interface Factory extends che.core.rest.Hyperlinks { | ||
button?: Button; | ||
workspace?: che.workspace.WorkspaceConfig; | ||
creator?: Author; | ||
v?: string; | ||
name?: string; | ||
policies?: Policies; | ||
links?: che.core.rest.Link[]; | ||
// org.eclipse.che.api.factory.shared.dto.IdeActionDto | ||
export interface IdeAction { | ||
id?: string; | ||
ide?: Ide; | ||
properties?: { [key: string]: string; }; | ||
} | ||
@@ -615,2 +615,9 @@ | ||
// org.eclipse.che.api.system.shared.dto.SystemStatusChangedEventDto | ||
export interface SystemStatusChangedEvent extends SystemEvent { | ||
prevStatus?: 'RUNNING' | 'PREPARING_TO_SHUTDOWN' | 'READY_TO_SHUTDOWN'; | ||
type?: 'STATUS_CHANGED' | 'STOPPING_SERVICE' | 'SUSPENDING_SERVICE' | 'SERVICE_ITEM_STOPPED' | 'SERVICE_ITEM_SUSPENDED' | 'SERVICE_STOPPED' | 'SERVICE_SUSPENDED'; | ||
status?: 'RUNNING' | 'PREPARING_TO_SHUTDOWN' | 'READY_TO_SHUTDOWN'; | ||
} | ||
// org.eclipse.che.api.system.shared.dto.SystemEventDto | ||
@@ -621,7 +628,9 @@ export interface SystemEvent { | ||
// org.eclipse.che.api.system.shared.dto.SystemStatusChangedEventDto | ||
export interface SystemStatusChangedEvent extends SystemEvent { | ||
prevStatus?: 'RUNNING' | 'PREPARING_TO_SHUTDOWN' | 'READY_TO_SHUTDOWN'; | ||
// org.eclipse.che.api.system.shared.dto.SystemServiceItemStoppedEventDto | ||
export interface SystemServiceItemStoppedEvent extends SystemServiceEvent { | ||
total?: number; | ||
item?: string; | ||
current?: number; | ||
service?: string; | ||
type?: 'STATUS_CHANGED' | 'STOPPING_SERVICE' | 'SUSPENDING_SERVICE' | 'SERVICE_ITEM_STOPPED' | 'SERVICE_ITEM_SUSPENDED' | 'SERVICE_STOPPED' | 'SERVICE_SUSPENDED'; | ||
status?: 'RUNNING' | 'PREPARING_TO_SHUTDOWN' | 'READY_TO_SHUTDOWN'; | ||
} | ||
@@ -641,11 +650,2 @@ | ||
// org.eclipse.che.api.system.shared.dto.SystemServiceItemStoppedEventDto | ||
export interface SystemServiceItemStoppedEvent extends SystemServiceEvent { | ||
total?: number; | ||
item?: string; | ||
current?: number; | ||
service?: string; | ||
type?: 'STATUS_CHANGED' | 'STOPPING_SERVICE' | 'SUSPENDING_SERVICE' | 'SERVICE_ITEM_STOPPED' | 'SERVICE_ITEM_SUSPENDED' | 'SERVICE_STOPPED' | 'SERVICE_SUSPENDED'; | ||
} | ||
} | ||
@@ -655,27 +655,18 @@ | ||
// org.eclipse.che.api.workspace.shared.dto.RuntimeDto | ||
export interface Runtime extends che.core.rest.Hyperlinks { | ||
owner?: string; | ||
warnings?: Warning[]; | ||
machineToken?: string; | ||
activeEnv?: string; | ||
links?: che.core.rest.Link[]; | ||
machines?: { [key: string]: Machine; }; | ||
commands?: Command[]; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.MachineConfigDto | ||
export interface MachineConfig { | ||
installers?: string[]; | ||
servers?: { [key: string]: ServerConfig; }; | ||
volumes?: { [key: string]: Volume; }; | ||
// org.eclipse.che.api.workspace.shared.dto.WorkspaceDto | ||
export interface Workspace { | ||
temporary?: boolean; | ||
namespace?: string; | ||
runtime?: Runtime; | ||
attributes?: { [key: string]: string; }; | ||
env?: { [key: string]: string; }; | ||
links?: { [key: string]: string; }; | ||
id?: string; | ||
config?: WorkspaceConfig; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.RuntimeIdentityDto | ||
export interface RuntimeIdentity { | ||
envName?: string; | ||
ownerId?: string; | ||
workspaceId?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.WarningDto | ||
export interface Warning { | ||
code?: number; | ||
message?: string; | ||
} | ||
@@ -702,27 +693,25 @@ | ||
// org.eclipse.che.api.workspace.shared.dto.WorkspaceDto | ||
export interface Workspace { | ||
temporary?: boolean; | ||
namespace?: string; | ||
runtime?: Runtime; | ||
attributes?: { [key: string]: string; }; | ||
links?: { [key: string]: string; }; | ||
id?: string; | ||
config?: WorkspaceConfig; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED'; | ||
// org.eclipse.che.api.workspace.shared.dto.RuntimeDto | ||
export interface Runtime extends che.core.rest.Hyperlinks { | ||
owner?: string; | ||
warnings?: Warning[]; | ||
machineToken?: string; | ||
activeEnv?: string; | ||
links?: che.core.rest.Link[]; | ||
machines?: { [key: string]: Machine; }; | ||
commands?: Command[]; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.MachineDto | ||
export interface Machine { | ||
servers?: { [key: string]: Server; }; | ||
attributes?: { [key: string]: string; }; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPED' | 'FAILED'; | ||
// org.eclipse.che.api.workspace.shared.dto.RuntimeIdentityDto | ||
export interface RuntimeIdentity { | ||
envName?: string; | ||
ownerId?: string; | ||
workspaceId?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.RecipeDto | ||
export interface Recipe { | ||
// org.eclipse.che.api.workspace.shared.dto.SourceStorageDto | ||
export interface SourceStorage { | ||
location?: string; | ||
type?: string; | ||
contentType?: string; | ||
content?: string; | ||
parameters?: { [key: string]: string; }; | ||
} | ||
@@ -738,2 +727,10 @@ | ||
// org.eclipse.che.api.workspace.shared.dto.RecipeDto | ||
export interface Recipe { | ||
location?: string; | ||
type?: string; | ||
contentType?: string; | ||
content?: string; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.ServerDto | ||
@@ -746,16 +743,13 @@ export interface Server { | ||
// org.eclipse.che.api.workspace.shared.dto.WorkspaceConfigDto | ||
export interface WorkspaceConfig extends che.core.rest.Hyperlinks { | ||
projects?: ProjectConfig[]; | ||
environments?: { [key: string]: Environment; }; | ||
name?: string; | ||
description?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.MachineConfigDto | ||
export interface MachineConfig { | ||
installers?: string[]; | ||
servers?: { [key: string]: ServerConfig; }; | ||
volumes?: { [key: string]: Volume; }; | ||
attributes?: { [key: string]: string; }; | ||
links?: che.core.rest.Link[]; | ||
commands?: Command[]; | ||
defaultEnv?: string; | ||
env?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.WarningDto | ||
export interface Warning { | ||
// org.eclipse.che.api.workspace.shared.dto.ProjectProblemDto | ||
export interface ProjectProblem { | ||
code?: number; | ||
@@ -765,9 +759,2 @@ message?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.SourceStorageDto | ||
export interface SourceStorage { | ||
location?: string; | ||
type?: string; | ||
parameters?: { [key: string]: string; }; | ||
} | ||
// org.eclipse.che.api.workspace.shared.dto.ProjectConfigDto | ||
@@ -786,25 +773,19 @@ export interface ProjectConfig { | ||
// org.eclipse.che.api.workspace.shared.dto.ProjectProblemDto | ||
export interface ProjectProblem { | ||
code?: number; | ||
message?: string; | ||
} | ||
} | ||
export namespace che.ssh { | ||
// org.eclipse.che.api.ssh.shared.dto.SshPairDto | ||
export interface SshPair extends che.core.rest.Hyperlinks { | ||
privateKey?: string; | ||
service?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.WorkspaceConfigDto | ||
export interface WorkspaceConfig extends che.core.rest.Hyperlinks { | ||
projects?: ProjectConfig[]; | ||
environments?: { [key: string]: Environment; }; | ||
name?: string; | ||
description?: string; | ||
attributes?: { [key: string]: string; }; | ||
links?: che.core.rest.Link[]; | ||
publicKey?: string; | ||
commands?: Command[]; | ||
defaultEnv?: string; | ||
} | ||
// org.eclipse.che.api.ssh.shared.dto.GenerateSshPairRequest | ||
export interface GenerateSshPairRequest { | ||
service?: string; | ||
name?: string; | ||
// org.eclipse.che.api.workspace.shared.dto.MachineDto | ||
export interface Machine { | ||
servers?: { [key: string]: Server; }; | ||
attributes?: { [key: string]: string; }; | ||
status?: 'STARTING' | 'RUNNING' | 'STOPPED' | 'FAILED'; | ||
} | ||
@@ -830,9 +811,20 @@ | ||
// org.eclipse.che.api.project.shared.dto.event.FileStateUpdateDto | ||
export interface FileStateUpdate { | ||
// org.eclipse.che.api.project.shared.dto.event.VfsWatchEvent | ||
export interface VfsWatchEvent { | ||
path?: string; | ||
hashCode?: string; | ||
file?: boolean; | ||
type?: 'CREATED' | 'DELETED' | 'MODIFIED'; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.event.PomModifiedEventDto | ||
export interface PomModifiedEvent { | ||
path?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.event.ProjectTreeTrackingOperationDto | ||
export interface ProjectTreeTrackingOperation { | ||
path?: string; | ||
type?: 'START' | 'STOP' | 'SUSPEND' | 'RESUME'; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.event.ProjectTreeStateUpdateDto | ||
@@ -845,18 +837,26 @@ export interface ProjectTreeStateUpdate { | ||
// org.eclipse.che.api.project.shared.dto.event.VfsWatchEvent | ||
export interface VfsWatchEvent { | ||
// org.eclipse.che.api.project.shared.dto.event.FileStateUpdateDto | ||
export interface FileStateUpdate { | ||
path?: string; | ||
file?: boolean; | ||
hashCode?: string; | ||
type?: 'CREATED' | 'DELETED' | 'MODIFIED'; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.event.ProjectTreeTrackingOperationDto | ||
export interface ProjectTreeTrackingOperation { | ||
path?: string; | ||
type?: 'START' | 'STOP' | 'SUSPEND' | 'RESUME'; | ||
} | ||
export namespace che.ssh { | ||
// org.eclipse.che.api.ssh.shared.dto.GenerateSshPairRequest | ||
export interface GenerateSshPairRequest { | ||
service?: string; | ||
name?: string; | ||
} | ||
// org.eclipse.che.api.project.shared.dto.event.PomModifiedEventDto | ||
export interface PomModifiedEvent { | ||
path?: string; | ||
// org.eclipse.che.api.ssh.shared.dto.SshPairDto | ||
export interface SshPair extends che.core.rest.Hyperlinks { | ||
privateKey?: string; | ||
service?: string; | ||
name?: string; | ||
links?: che.core.rest.Link[]; | ||
publicKey?: string; | ||
} | ||
@@ -863,0 +863,0 @@ |
{ | ||
"name": "@eclipse-che/api", | ||
"version": "6.17.0", | ||
"version": "6.17.1", | ||
"description": "Eclipse Che DTO API", | ||
@@ -5,0 +5,0 @@ "types": "index.d.ts", |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
0