From adaf9d0247f16c82b2b7005b2cd6100443aff46b Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Mon, 21 Oct 2024 20:59:49 +0530 Subject: [PATCH] feat: make userId optional --- server/src/models/Robot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/models/Robot.ts b/server/src/models/Robot.ts index 00294b34..e3a5cae4 100644 --- a/server/src/models/Robot.ts +++ b/server/src/models/Robot.ts @@ -19,7 +19,7 @@ interface RobotWorkflow { interface RobotAttributes { id: string; - userId: string; + userId?: string; recording_meta: RobotMeta; recording: RobotWorkflow; google_sheet_email?: string | null;