Skip to content

Commit

Permalink
Update TypeScript binding.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed May 20, 2024
1 parent df28d16 commit 44efbb9
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions api-client/src/runs/commands/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,18 @@ export interface CommandDetail {
}

export interface CommandsLinks {
current: {
// link to the currently executing command
href: string
meta: {
runId: string
commandId: string
key: string
createdAt: string
index: number
}
current: CommandsLink
currentlyRecoveringFrom: CommandsLink
}

interface CommandsLink {
href: string
meta: {
runId: string
commandId: string
key: string
createdAt: string
index: number
}
}

Expand Down

0 comments on commit 44efbb9

Please sign in to comment.