Files
simstudioai--sim/apps/sim/tools/airtable/list_tables.ts
T
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

125 lines
3.6 KiB
TypeScript

import type {
AirtableField,
AirtableListTablesParams,
AirtableListTablesResponse,
AirtableTable,
} from '@/tools/airtable/types'
import type { ToolConfig } from '@/tools/types'
export const airtableListTablesTool: ToolConfig<
AirtableListTablesParams,
AirtableListTablesResponse
> = {
id: 'airtable_list_tables',
name: 'Airtable List Tables',
description: 'List all tables and their schema in an Airtable base',
version: '1.0.0',
oauth: {
required: true,
provider: 'airtable',
},
params: {
accessToken: {
type: 'string',
required: true,
visibility: 'hidden',
description: 'OAuth access token',
},
baseId: {
type: 'string',
required: true,
visibility: 'user-or-llm',
description: 'Airtable base ID (starts with "app", e.g., "appXXXXXXXXXXXXXX")',
},
},
request: {
url: (params) => `https://api.airtable.com/v0/meta/bases/${params.baseId?.trim()}/tables`,
method: 'GET',
headers: (params) => ({
Authorization: `Bearer ${params.accessToken}`,
'Content-Type': 'application/json',
}),
},
transformResponse: async (response, params) => {
const data = await response.json()
const tables: AirtableTable[] = (data.tables ?? []).map(
(table: {
id: string
name: string
description?: string
primaryFieldId: string
fields: AirtableField[]
}) => ({
id: table.id,
name: table.name,
description: table.description ?? null,
primaryFieldId: table.primaryFieldId,
fields: (table.fields ?? []).map((field: AirtableField) => ({
id: field.id,
name: field.name,
type: field.type,
description: field.description ?? null,
options: field.options ?? null,
})),
})
)
return {
success: true,
output: {
tables,
metadata: {
baseId: params?.baseId ?? '',
totalTables: tables.length,
},
},
}
},
outputs: {
tables: {
type: 'array',
description: 'List of tables in the base with their schema',
items: {
type: 'object',
properties: {
id: { type: 'string', description: 'Table ID (starts with "tbl")' },
name: { type: 'string', description: 'Table name' },
description: { type: 'string', description: 'Table description' },
primaryFieldId: { type: 'string', description: 'ID of the primary field' },
fields: {
type: 'array',
description: 'List of fields in the table',
items: {
type: 'object',
properties: {
id: { type: 'string', description: 'Field ID (starts with "fld")' },
name: { type: 'string', description: 'Field name' },
type: {
type: 'string',
description:
'Field type (singleLineText, multilineText, number, checkbox, singleSelect, multipleSelects, date, dateTime, attachment, linkedRecord, etc.)',
},
description: { type: 'string', description: 'Field description' },
options: { type: 'json', description: 'Field-specific options (choices, etc.)' },
},
},
},
},
},
},
metadata: {
type: 'json',
description: 'Base info and count metadata',
properties: {
baseId: { type: 'string', description: 'The base ID queried' },
totalTables: { type: 'number', description: 'Number of tables in the base' },
},
},
},
}