From e568f68415e7e9783d33a982ef38cb610a75a5ba Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Tue, 21 May 2024 11:10:58 -0400 Subject: [PATCH] Fix: `current` and `currentlyRecoveringFrom` need to be nullable and omittable. --- api-client/src/runs/commands/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-client/src/runs/commands/types.ts b/api-client/src/runs/commands/types.ts index fda38a4aa2a..f92af15eab5 100644 --- a/api-client/src/runs/commands/types.ts +++ b/api-client/src/runs/commands/types.ts @@ -15,8 +15,8 @@ export interface CommandDetail { } export interface CommandsLinks { - current: CommandsLink - currentlyRecoveringFrom: CommandsLink + current?: CommandsLink | null + currentlyRecoveringFrom?: CommandsLink | null } interface CommandsLink {