Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2024-02-10 14:41:10 +01:00
parent 2b900fee6d
commit 4a460034da
3 changed files with 0 additions and 28 deletions
@@ -24,6 +24,5 @@ export type {
TaskCompletionState,
TaskContext,
TaskEventType,
TaskState,
TaskStatus,
} from './types';
@@ -26,20 +26,6 @@ export type TaskSecrets = Record<string, string> & {
backstageToken?: string;
};
/**
* The state of all task's checkpoints
*
* @public
*/
export type TaskState = {
[key: string]:
| { status: 'failed'; reason: string }
| {
status: 'success';
value: JsonValue;
};
};
/**
* The status of each step of the Task
*