Skip to content

Commit

Permalink
fix: make cpu and ram nullable in APIApplicationStatusAll by @teixeira0x
Browse files Browse the repository at this point in the history
  • Loading branch information
joaotonaco authored Dec 4, 2024
2 parents 9bc5a69 + 86ce8e9 commit faeebaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions payloads/v2/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ export type APIApplicationStatusPayload = APIPayload<APIApplicationStatus>;
*/
export interface APIApplicationStatusAll {
id: ApplicationId;
cpu: string;
ram: string;
cpu?: string;
ram?: string;
running: boolean;
}

Expand Down

0 comments on commit faeebaf

Please sign in to comment.