File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -602,6 +602,11 @@ export const RunTaskOptionsSchema = z.object({
602
602
603
603
export type RunTaskOptions = z . input < typeof RunTaskOptionsSchema > ;
604
604
605
+ export type OverridableRunTaskOptions = Pick <
606
+ RunTaskOptions ,
607
+ "retry" | "delayUntil" | "description"
608
+ > ;
609
+
605
610
export const RunTaskBodyInputSchema = RunTaskOptionsSchema . extend ( {
606
611
idempotencyKey : z . string ( ) ,
607
612
parentId : z . string ( ) . optional ( ) ,
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type {
2
2
DisplayProperty ,
3
3
EventFilter ,
4
4
Logger ,
5
+ OverridableRunTaskOptions ,
5
6
Prettify ,
6
7
RedactString ,
7
8
RegisteredOptionsDiff ,
@@ -16,6 +17,7 @@ import { TriggerClient } from "./triggerClient";
16
17
export type {
17
18
DisplayProperty ,
18
19
Logger ,
20
+ OverridableRunTaskOptions ,
19
21
Prettify ,
20
22
RedactString ,
21
23
RegisteredOptionsDiff ,
You can’t perform that action at this time.
0 commit comments