Skip to content

Commit faeebaf

Browse files
authored
fix: make cpu and ram nullable in APIApplicationStatusAll by @teixeira0x
2 parents 9bc5a69 + 86ce8e9 commit faeebaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

payloads/v2/status.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ export type APIApplicationStatusPayload = APIPayload<APIApplicationStatus>;
4242
*/
4343
export interface APIApplicationStatusAll {
4444
id: ApplicationId;
45-
cpu: string;
46-
ram: string;
45+
cpu?: string;
46+
ram?: string;
4747
running: boolean;
4848
}
4949

0 commit comments

Comments
 (0)