From d2e4afd15b8db6827c9702ff6c507d1ae851a1f7 Mon Sep 17 00:00:00 2001 From: Vikhyath Mondreti Date: Tue, 3 Feb 2026 16:40:54 -0800 Subject: [PATCH] remove import expression --- apps/sim/lib/core/execution-limits/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/sim/lib/core/execution-limits/types.ts b/apps/sim/lib/core/execution-limits/types.ts index 463caebbd..51cfbcb10 100644 --- a/apps/sim/lib/core/execution-limits/types.ts +++ b/apps/sim/lib/core/execution-limits/types.ts @@ -1,7 +1,7 @@ import { env } from '@/lib/core/config/env' import type { SubscriptionPlan } from '@/lib/core/rate-limiter/types' -export interface ExecutionTimeoutConfig { +interface ExecutionTimeoutConfig { sync: number async: number } @@ -25,7 +25,7 @@ function getSyncTimeoutForPlan(plan: SubscriptionPlan): number { return (Number.parseInt(envVarMap[plan] || '') || DEFAULT_SYNC_TIMEOUTS[plan]) * 1000 } -export const EXECUTION_TIMEOUTS: Record = { +const EXECUTION_TIMEOUTS: Record = { free: { sync: getSyncTimeoutForPlan('free'), async: ASYNC_TIMEOUT_SECONDS * 1000,