From 4d20efc68f3e89f6000adcf98d0ebf9e5ad9c039 Mon Sep 17 00:00:00 2001 From: Alistair Smith Date: Wed, 1 Feb 2023 01:03:26 +0000 Subject: [PATCH] add BuildEnvironment --- src/rest/types/ignite.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/rest/types/ignite.ts b/src/rest/types/ignite.ts index 306bab3b..ef670420 100644 --- a/src/rest/types/ignite.ts +++ b/src/rest/types/ignite.ts @@ -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 @@ -370,6 +383,11 @@ export interface Build { * State of the build */ state: BuildState; + + /** + * Environment for build + */ + environment: BuildEnvironment; } export type HealthCheck = {