Skip to content

Commit 8574d66

Browse files
committed
uncook
1 parent e79e9e7 commit 8574d66

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

apps/sim/blocks/blocks/table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { TableIcon } from '@/components/icons'
2-
import { TABLE_LIMITS } from '@/lib/table'
2+
import { TABLE_LIMITS } from '@/lib/table/constants'
33
import { filterRulesToFilter, sortRulesToSort } from '@/lib/table/query-builder/converters'
44
import type { BlockConfig } from '@/blocks/types'
55
import type { TableQueryResponse } from '@/tools/table/types'

apps/sim/tools/table/batch-insert-rows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TABLE_LIMITS } from '@/lib/table'
1+
import { TABLE_LIMITS } from '@/lib/table/constants'
22
import type { ToolConfig } from '@/tools/types'
33
import type { TableBatchInsertParams, TableBatchInsertResponse } from './types'
44

apps/sim/tools/table/delete-rows-by-filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TABLE_LIMITS } from '@/lib/table'
1+
import { TABLE_LIMITS } from '@/lib/table/constants'
22
import type { ToolConfig } from '@/tools/types'
33
import type { TableBulkOperationResponse, TableDeleteByFilterParams } from './types'
44

apps/sim/tools/table/query-rows.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TABLE_LIMITS } from '@/lib/table'
1+
import { TABLE_LIMITS } from '@/lib/table/constants'
22
import type { ToolConfig } from '@/tools/types'
33
import type { TableQueryResponse, TableRowQueryParams } from './types'
44

apps/sim/tools/table/update-rows-by-filter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TABLE_LIMITS } from '@/lib/table'
1+
import { TABLE_LIMITS } from '@/lib/table/constants'
22
import type { ToolConfig } from '@/tools/types'
33
import type { TableBulkOperationResponse, TableUpdateByFilterParams } from './types'
44

apps/sim/tools/table/upsert-row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { TableRow } from '@/lib/table'
1+
import type { TableRow } from '@/lib/table/types'
22
import type { ToolConfig, ToolResponse } from '@/tools/types'
33
import type { TableRowInsertParams } from './types'
44

0 commit comments

Comments
 (0)