Skip to content

Commit 86ce8e9

Browse files
committed
fix: make cpu and ram nullable in APIApplicationStatusAll payload
1 parent 4d7babe commit 86ce8e9

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)