Files
simstudioai--sim/apps/sim/tools/airtable/get_base_schema.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

127 lines
2.9 KiB
TypeScript

import type { ToolConfig, ToolResponse } from '@/tools/types'
export interface AirtableGetBaseSchemaParams {
accessToken: string
baseId: string
}
interface AirtableFieldSchema {
id: string
name: string
type: string
description?: string
options?: Record<string, unknown>
}
interface AirtableViewSchema {
id: string
name: string
type: string
}
interface AirtableTableSchema {
id: string
name: string
description?: string
fields: AirtableFieldSchema[]
views: AirtableViewSchema[]
}
export interface AirtableGetBaseSchemaResponse extends ToolResponse {
output: {
tables: AirtableTableSchema[]
metadata: {
totalTables: number
}
}
}
export const airtableGetBaseSchemaTool: ToolConfig<
AirtableGetBaseSchemaParams,
AirtableGetBaseSchemaResponse
> = {
id: 'airtable_get_base_schema',
name: 'Airtable Get Base Schema',
description: 'Get the schema of all tables, fields, and views 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}/tables`,
method: 'GET',
headers: (params) => ({
Authorization: `Bearer ${params.accessToken}`,
}),
},
transformResponse: async (response) => {
const data = await response.json()
const tables = (data.tables || []).map((table: Record<string, unknown>) => ({
id: table.id,
name: table.name,
description: table.description,
fields: ((table.fields as Record<string, unknown>[]) || []).map((field) => ({
id: field.id,
name: field.name,
type: field.type,
description: field.description,
options: field.options,
})),
views: ((table.views as Record<string, unknown>[]) || []).map((view) => ({
id: view.id,
name: view.name,
type: view.type,
})),
}))
return {
success: true,
output: {
tables,
metadata: {
totalTables: tables.length,
},
},
}
},
outputs: {
tables: {
type: 'json',
description: 'Array of table schemas with fields and views',
items: {
type: 'object',
properties: {
id: { type: 'string' },
name: { type: 'string' },
description: { type: 'string' },
fields: { type: 'json' },
views: { type: 'json' },
},
},
},
metadata: {
type: 'json',
description: 'Operation metadata including total tables count',
},
},
}