Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/hopinc/js
Browse files Browse the repository at this point in the history
  • Loading branch information
Looskie committed Nov 7, 2022
2 parents f73fa21 + 08fb0ac commit e4eb202
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onehop/js

## 1.10.5

### Patch Changes

- cc4a86c: Add volume to QuotaUsage and DefaultQuotas

## 1.10.4

### 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.10.4",
"version": "1.10.5",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
Expand Down
2 changes: 2 additions & 0 deletions src/rest/types/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,15 @@ export interface Project {
export interface DefaultQuotas {
vcpu: number;
ram: number;
volume: number;
}

export interface QuotaOverrides {}

export interface QuotaUsage {
vcpu: number;
ram: number;
volume: number;
}

export interface Secret {
Expand Down

0 comments on commit e4eb202

Please sign in to comment.