Skip to content

Commit

Permalink
fix: make cpu and ram nullable in APIApplicationStatusAll payload
Browse files Browse the repository at this point in the history
  • Loading branch information
teixeira0x committed Nov 18, 2024
1 parent 4d7babe commit 86ce8e9
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 86ce8e9

Please sign in to comment.