Skip to content

Commit

Permalink
feat(factory): Add support for enhanced response from /factory/resolv…
Browse files Browse the repository at this point in the history
…er method

eclipse-che/che#19925

Change-Id: Ieedc421c4b8529e191e398b367275b02769c15d5
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
  • Loading branch information
benoitf committed Jun 4, 2021
1 parent f9c31b7 commit a49cbdd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/rest/resources.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*********************************************************************
* Copyright (c) 2018 Red Hat, Inc.
* Copyright (c) 2018-2021 Red Hat, Inc.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
Expand All @@ -15,7 +15,13 @@ import * as Qs from 'qs';
export interface FactoryResolver {
v: string;
source: string;
devfile: che.workspace.devfile.Devfile
devfile: che.workspace.devfile.Devfile;
scm_info: {
clone_url: string;
scm_provider: string;
branch?: string;
};
links: che.core.rest.Link[];
}

export interface KubernetesNamespace {
Expand Down

0 comments on commit a49cbdd

Please sign in to comment.