From 6b313ad0b035f7a25e23c74920fdbcae997e8d3c Mon Sep 17 00:00:00 2001 From: Nicolas Date: Mon, 10 Feb 2025 17:42:12 -0300 Subject: [PATCH] Update types.ts --- apps/api/src/controllers/v1/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/controllers/v1/types.ts b/apps/api/src/controllers/v1/types.ts index 89721cad..648af7fa 100644 --- a/apps/api/src/controllers/v1/types.ts +++ b/apps/api/src/controllers/v1/types.ts @@ -68,7 +68,7 @@ export const extractOptions = z export type ExtractOptions = z.infer; const ACTIONS_MAX_WAIT_TIME = 60; -const MAX_ACTIONS = 15; +const MAX_ACTIONS = 50; function calculateTotalWaitTime(actions: any[] = [], waitFor: number = 0): number { const actionWaitTime = actions.reduce((acc, action) => { if (action.type === "wait") {