Skip to content

Commit

Permalink
add BuildEnvironment
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Feb 1, 2023
1 parent fa57007 commit 4d20efc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/rest/types/ignite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,19 @@ export interface BuildMetaData {
commit_url?: string;
}

/**
* Build environment contians information about the
* language and build commands used to build the deployment
*/
export interface BuildEnvironment {
language: string | null;
cmds: {
build: string | null;
start: string | null;
install: string | null;
};
}

export interface Build {
/**
* ID of the build
Expand Down Expand Up @@ -370,6 +383,11 @@ export interface Build {
* State of the build
*/
state: BuildState;

/**
* Environment for build
*/
environment: BuildEnvironment;
}

export type HealthCheck = {
Expand Down

0 comments on commit 4d20efc

Please sign in to comment.