We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf36a53 commit b74d15dCopy full SHA for b74d15d
1 file changed
packages/core/src/v3/schemas/runEngine.ts
@@ -161,6 +161,7 @@ export type CheckpointType = z.infer<typeof CheckpointType>;
161
export const CheckpointInput = z.object({
162
type: CheckpointType,
163
location: z.string(),
164
+ imageRef: z.string().nullish(),
165
reason: z.string().nullish(),
166
});
167
@@ -170,7 +171,6 @@ export const TaskRunCheckpoint = CheckpointInput.merge(
170
171
z.object({
172
id: z.string(),
173
friendlyId: z.string(),
- imageRef: z.string(),
174
})
175
);
176
0 commit comments