Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@eclipse-che/api

Package Overview
Dependencies
Maintainers
5
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eclipse-che/api - npm Package Compare versions

Comparing version 7.31.2 to 7.32.0

114

index.d.ts

@@ -6,2 +6,9 @@ // File has been generated automatically by Eclipse Che TypeScript DTO generator

// org.eclipse.che.api.factory.shared.dto.ScmInfoDto
export interface ScmInfo {
scmProviderName?: string;
branch?: string;
repositoryUrl?: string;
}
// org.eclipse.che.api.factory.shared.dto.FactoryDto

@@ -21,9 +28,2 @@ export interface Factory extends che.core.rest.Hyperlinks {

// org.eclipse.che.api.factory.shared.dto.ScmInfoDto
export interface ScmInfo {
scmProviderName?: string;
branch?: string;
repositoryUrl?: string;
}
// org.eclipse.che.api.factory.shared.dto.OnAppLoadedDto

@@ -34,2 +34,8 @@ export interface OnAppLoaded {

// org.eclipse.che.api.factory.shared.dto.IdeActionDto
export interface IdeAction {
id?: string;
properties?: { [key: string]: string; };
}
// org.eclipse.che.api.factory.shared.dto.OnProjectsLoadedDto

@@ -47,7 +53,12 @@ export interface OnProjectsLoaded {

links?: che.core.rest.Link[];
source?: string;
id?: string;
source?: string;
ide?: Ide;
}
// org.eclipse.che.api.factory.shared.dto.OnAppClosedDto
export interface OnAppClosed {
actions?: IdeAction[];
}
// org.eclipse.che.api.factory.shared.dto.FactoryDevfileV2Dto

@@ -67,7 +78,2 @@ export interface FactoryDevfileV2 extends che.core.rest.Hyperlinks {

// org.eclipse.che.api.factory.shared.dto.OnAppClosedDto
export interface OnAppClosed {
actions?: IdeAction[];
}
// org.eclipse.che.api.factory.shared.dto.AuthorDto

@@ -89,8 +95,2 @@ export interface Author {

// org.eclipse.che.api.factory.shared.dto.IdeActionDto
export interface IdeAction {
id?: string;
properties?: { [key: string]: string; };
}
// org.eclipse.che.api.factory.shared.dto.IdeDto

@@ -107,2 +107,8 @@ export interface Ide {

// org.eclipse.che.api.system.shared.dto.SystemServiceEventDto
export interface SystemServiceEvent extends SystemEvent {
service?: string;
type?: 'STATUS_CHANGED' | 'STOPPING_SERVICE' | 'SUSPENDING_SERVICE' | 'SERVICE_ITEM_STOPPED' | 'SERVICE_ITEM_SUSPENDED' | 'SERVICE_STOPPED' | 'SERVICE_SUSPENDED';
}
// org.eclipse.che.api.system.shared.dto.SystemServiceItemStoppedEventDto

@@ -117,8 +123,2 @@ export interface SystemServiceItemStoppedEvent extends SystemServiceEvent {

// org.eclipse.che.api.system.shared.dto.SystemServiceEventDto
export interface SystemServiceEvent extends SystemEvent {
service?: string;
type?: 'STATUS_CHANGED' | 'STOPPING_SERVICE' | 'SUSPENDING_SERVICE' | 'SERVICE_ITEM_STOPPED' | 'SERVICE_ITEM_SUSPENDED' | 'SERVICE_STOPPED' | 'SERVICE_SUSPENDED';
}
// org.eclipse.che.api.system.shared.dto.SystemStatusChangedEventDto

@@ -155,8 +155,2 @@ export interface SystemStatusChangedEvent extends SystemEvent {

// org.eclipse.che.api.workspace.shared.dto.devfile.DevfileVolumeDto
export interface DevfileVolume {
name?: string;
containerPath?: string;
}
// org.eclipse.che.api.workspace.shared.dto.devfile.EnvDto

@@ -259,2 +253,8 @@ export interface Env {

// org.eclipse.che.api.workspace.shared.dto.devfile.DevfileVolumeDto
export interface DevfileVolume {
name?: string;
containerPath?: string;
}
}

@@ -283,4 +283,4 @@

attributes?: { [key: string]: string; };
commandLine?: string;
type?: string;
commandLine?: string;
}

@@ -351,4 +351,4 @@

runtime?: Runtime;
attributes?: { [key: string]: string; };
links?: { [key: string]: string; };
attributes?: { [key: string]: string; };
id?: string;

@@ -470,4 +470,4 @@ config?: WorkspaceConfig;

status?: 'STARTING' | 'RUNNING' | 'STOPPING' | 'STOPPED';
initiatedByUser?: boolean;
workspaceId?: string;
initiatedByUser?: boolean;
}

@@ -478,6 +478,6 @@

stream?: string;
time?: string;
text?: string;
time?: string;
runtimeId?: che.workspace.RuntimeIdentity;
machineName?: string;
runtimeId?: che.workspace.RuntimeIdentity;
}

@@ -489,4 +489,4 @@

error?: string;
runtimeId?: che.workspace.RuntimeIdentity;
machineName?: string;
runtimeId?: che.workspace.RuntimeIdentity;
status?: 'STARTING' | 'DONE' | 'FAILED';

@@ -516,6 +516,6 @@ }

stream?: string;
time?: string;
text?: string;
time?: string;
runtimeId?: che.workspace.RuntimeIdentity;
machineName?: string;
runtimeId?: che.workspace.RuntimeIdentity;
}

@@ -541,4 +541,4 @@

export interface BrokerLogEvent {
time?: string;
text?: string;
time?: string;
runtimeId?: che.workspace.RuntimeIdentity;

@@ -551,10 +551,11 @@ }

// org.eclipse.che.api.core.rest.shared.dto.LinkParameter
export interface LinkParameter {
valid?: string[];
defaultValue?: string;
name?: string;
description?: string;
type?: 'String' | 'Number' | 'Boolean' | 'Array' | 'Object';
required?: boolean;
// org.eclipse.che.api.core.rest.shared.dto.Link
export interface Link {
method?: string;
requestBody?: RequestBodyDescriptor;
produces?: string;
rel?: string;
href?: string;
parameters?: LinkParameter[];
consumes?: string;
}

@@ -604,11 +605,10 @@

// org.eclipse.che.api.core.rest.shared.dto.Link
export interface Link {
method?: string;
requestBody?: RequestBodyDescriptor;
rel?: string;
produces?: string;
href?: string;
parameters?: LinkParameter[];
consumes?: string;
// org.eclipse.che.api.core.rest.shared.dto.LinkParameter
export interface LinkParameter {
valid?: string[];
defaultValue?: string;
name?: string;
description?: string;
type?: 'String' | 'Number' | 'Boolean' | 'Array' | 'Object';
required?: boolean;
}

@@ -615,0 +615,0 @@

{
"name": "@eclipse-che/api",
"version": "7.31.2",
"version": "7.32.0",
"description": "Eclipse Che DTO API",

@@ -5,0 +5,0 @@ "types": "index.d.ts",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc