From f1b6839d2869b5105cc72c5fcce3caa67bd55e99 Mon Sep 17 00:00:00 2001 From: Diwank Tomer Date: Thu, 20 Jun 2024 20:15:22 -0700 Subject: [PATCH] feat(tasks): Enable all fields of ExecutionInput Signed-off-by: Diwank Tomer --- sdks/ts/src/api/schemas/$Execution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdks/ts/src/api/schemas/$Execution.ts b/sdks/ts/src/api/schemas/$Execution.ts index 0494c10d5..aa7617556 100644 --- a/sdks/ts/src/api/schemas/$Execution.ts +++ b/sdks/ts/src/api/schemas/$Execution.ts @@ -38,12 +38,12 @@ export const $Execution = { created_at: { type: "string", isRequired: true, - format: "uuid", + format: "date-time", }, updated_at: { type: "string", isRequired: true, - format: "uuid", + format: "date-time", }, }, } as const;