fix: ServerUpdateOsResponse type

This commit is contained in:
Zack Spear
2024-01-31 09:39:20 -08:00
committed by Zack Spear
parent 7e33b25593
commit cce1953cb8
+2 -2
View File
@@ -54,10 +54,10 @@ export interface ServerUpdateOsResponse {
name: string; // "Unraid 6.13.0-beta0.27"
date: string; // "2023-12-13"
isNewer: boolean; // false
changelog?: string; // "https://raw.githubusercontent.com/unraid/docs/main/docs/unraid-os/release-notes/6.13.0-beta0.27.md"
changelog: string | null; // "https://raw.githubusercontent.com/unraid/docs/main/docs/unraid-os/release-notes/6.13.0-beta0.27.md"
/** @todo have Eli return this when applicable */
changelog_pretty?: string; // "https://docs.unraid.net/unraid-os/release-notes/6.12.6/"
sha256?: string;
sha256: string | null;
}
export interface Server {