Update types.ts

This commit is contained in:
Nicolas 2025-02-10 17:42:12 -03:00 committed by GitHub
parent bc787de62a
commit 6b313ad0b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,7 +68,7 @@ export const extractOptions = z
export type ExtractOptions = z.infer<typeof extractOptions>;
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") {