Skip to content

Commit

Permalink
Merge branch 'master' of github.com:hopinc/js
Browse files Browse the repository at this point in the history
  • Loading branch information
Phineas committed Feb 1, 2023
2 parents 21fa991 + f4fc82f commit 1949c0d
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .changeset/calm-moose-move.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
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

1 comment on commit 1949c0d

@vercel
Copy link

@vercel vercel bot commented on 1949c0d Feb 1, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hop-js – ./

hop-js.vercel.app
js.hop.io
hop-js-git-master-onehop.vercel.app
hop-js-onehop.vercel.app

Please sign in to comment.