Signed-off-by: bnechyporenko <bnechyporenko@bol.com>
This commit is contained in:
bnechyporenko
2024-02-18 11:32:42 +01:00
parent 562270b6dd
commit 2d40f79c44
2 changed files with 0 additions and 20 deletions
-12
View File
@@ -364,18 +364,6 @@ export interface TaskContext {
// (undocumented)
spec: TaskSpec;
// (undocumented)
state?: {
[key: string]:
| {
status: 'failed';
reason: string;
}
| {
status: 'success';
value: JsonValue;
};
};
// (undocumented)
updateCheckpoint?(
options:
| {
@@ -110,14 +110,6 @@ export interface TaskContext {
cancelSignal: AbortSignal;
spec: TaskSpec;
secrets?: TaskSecrets;
state?: {
[key: string]:
| { status: 'failed'; reason: string }
| {
status: 'success';
value: JsonValue;
};
};
createdBy?: string;
done: boolean;
isDryRun?: boolean;