diff --git a/apps/sim/blocks/blocks/table.ts b/apps/sim/blocks/blocks/table.ts index 25b624d73..5179f9c41 100644 --- a/apps/sim/blocks/blocks/table.ts +++ b/apps/sim/blocks/blocks/table.ts @@ -1,5 +1,5 @@ import { TableIcon } from '@/components/icons' -import { TABLE_LIMITS } from '@/lib/table' +import { TABLE_LIMITS } from '@/lib/table/constants' import { filterRulesToFilter, sortRulesToSort } from '@/lib/table/query-builder/converters' import type { BlockConfig } from '@/blocks/types' import type { TableQueryResponse } from '@/tools/table/types' diff --git a/apps/sim/tools/table/batch-insert-rows.ts b/apps/sim/tools/table/batch-insert-rows.ts index 6c1b3c605..686f4c470 100644 --- a/apps/sim/tools/table/batch-insert-rows.ts +++ b/apps/sim/tools/table/batch-insert-rows.ts @@ -1,4 +1,4 @@ -import { TABLE_LIMITS } from '@/lib/table' +import { TABLE_LIMITS } from '@/lib/table/constants' import type { ToolConfig } from '@/tools/types' import type { TableBatchInsertParams, TableBatchInsertResponse } from './types' diff --git a/apps/sim/tools/table/delete-rows-by-filter.ts b/apps/sim/tools/table/delete-rows-by-filter.ts index a20856445..9432fbe60 100644 --- a/apps/sim/tools/table/delete-rows-by-filter.ts +++ b/apps/sim/tools/table/delete-rows-by-filter.ts @@ -1,4 +1,4 @@ -import { TABLE_LIMITS } from '@/lib/table' +import { TABLE_LIMITS } from '@/lib/table/constants' import type { ToolConfig } from '@/tools/types' import type { TableBulkOperationResponse, TableDeleteByFilterParams } from './types' diff --git a/apps/sim/tools/table/query-rows.ts b/apps/sim/tools/table/query-rows.ts index 1cb6e0fe2..ac8d1e266 100644 --- a/apps/sim/tools/table/query-rows.ts +++ b/apps/sim/tools/table/query-rows.ts @@ -1,4 +1,4 @@ -import { TABLE_LIMITS } from '@/lib/table' +import { TABLE_LIMITS } from '@/lib/table/constants' import type { ToolConfig } from '@/tools/types' import type { TableQueryResponse, TableRowQueryParams } from './types' diff --git a/apps/sim/tools/table/update-rows-by-filter.ts b/apps/sim/tools/table/update-rows-by-filter.ts index e8a7a634a..7bc7d0602 100644 --- a/apps/sim/tools/table/update-rows-by-filter.ts +++ b/apps/sim/tools/table/update-rows-by-filter.ts @@ -1,4 +1,4 @@ -import { TABLE_LIMITS } from '@/lib/table' +import { TABLE_LIMITS } from '@/lib/table/constants' import type { ToolConfig } from '@/tools/types' import type { TableBulkOperationResponse, TableUpdateByFilterParams } from './types' diff --git a/apps/sim/tools/table/upsert-row.ts b/apps/sim/tools/table/upsert-row.ts index 03ca7c2ca..8d20ceb52 100644 --- a/apps/sim/tools/table/upsert-row.ts +++ b/apps/sim/tools/table/upsert-row.ts @@ -1,4 +1,4 @@ -import type { TableRow } from '@/lib/table' +import type { TableRow } from '@/lib/table/types' import type { ToolConfig, ToolResponse } from '@/tools/types' import type { TableRowInsertParams } from './types'