fix: turn string check into any for udpate status endpoint
This commit is contained in:
parent
b0d1bcc303
commit
4b37de9ec5
@ -16,7 +16,7 @@ const Request = z.object({
|
|||||||
status: WorkflowRunStatusSchema.optional(),
|
status: WorkflowRunStatusSchema.optional(),
|
||||||
time: z.coerce.date().optional(),
|
time: z.coerce.date().optional(),
|
||||||
output_data: z.any().optional(),
|
output_data: z.any().optional(),
|
||||||
log_data: z.string().optional(),
|
log_data: z.any().optional(),
|
||||||
});
|
});
|
||||||
|
|
||||||
export async function POST(request: Request) {
|
export async function POST(request: Request) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user