This commit is contained in:
Lakee Sivaraya
2026-01-17 09:58:48 -08:00
parent e79e9e7367
commit 8574d66aac
6 changed files with 6 additions and 6 deletions

View File

@@ -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'

View File

@@ -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'

View File

@@ -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'

View File

@@ -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'

View File

@@ -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'

View File

@@ -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'