diff --git a/.changeset/calm-moose-move.md b/.changeset/calm-moose-move.md deleted file mode 100644 index 1d638065..00000000 --- a/.changeset/calm-moose-move.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@onehop/js': patch ---- - -add optional description to preset form schema fields diff --git a/CHANGELOG.md b/CHANGELOG.md index 76d00b06..243865a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # @onehop/js +## 1.22.3 + +### Patch Changes + +- bf4e706: Add API.Ignite.BuildEnvironment type + +## 1.22.2 + +### Patch Changes + +- 6c7c726: add optional description to preset form schema fields + ## 1.22.1 ### Patch Changes diff --git a/package.json b/package.json index 62b9b884..fb67ab34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@onehop/js", - "version": "1.22.1", + "version": "1.22.3", "main": "./dist/index.cjs", "types": "./dist/index.d.ts", "module": "./dist/index.js", 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 = {