fix(logs): include missing deployment UUIDs in anatomy output so frontend can reliably fetch build logs

This commit is contained in:
2026-06-14 15:04:25 -07:00
parent 7f170c8079
commit ec68e78725
2 changed files with 6 additions and 0 deletions

View File

@@ -49,12 +49,14 @@ export interface Anatomy {
branch?: string;
buildPack?: string;
lastBuild?: {
uuid: string;
status: string;
createdAt?: string;
finishedAt?: string;
commit?: string;
};
inFlightBuild?: {
uuid: string;
status: string;
createdAt?: string;
finishedAt?: string;