d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
82 lines
1.9 KiB
TypeScript
82 lines
1.9 KiB
TypeScript
import { AirtableIcon } from '@/components/icons'
|
|
import type { ConnectorMeta } from '@/connectors/types'
|
|
|
|
export const airtableConnectorMeta: ConnectorMeta = {
|
|
id: 'airtable',
|
|
name: 'Airtable',
|
|
description: 'Sync records from an Airtable table',
|
|
version: '1.0.0',
|
|
icon: AirtableIcon,
|
|
|
|
auth: {
|
|
mode: 'oauth',
|
|
provider: 'airtable',
|
|
requiredScopes: ['data.records:read', 'schema.bases:read'],
|
|
},
|
|
|
|
configFields: [
|
|
{
|
|
id: 'baseSelector',
|
|
title: 'Base',
|
|
type: 'selector',
|
|
selectorKey: 'airtable.bases',
|
|
canonicalParamId: 'baseId',
|
|
mode: 'basic',
|
|
placeholder: 'Select a base',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'baseId',
|
|
title: 'Base ID',
|
|
type: 'short-input',
|
|
canonicalParamId: 'baseId',
|
|
mode: 'advanced',
|
|
placeholder: 'e.g. appXXXXXXXXXXXXXX',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'tableSelector',
|
|
title: 'Table',
|
|
type: 'selector',
|
|
selectorKey: 'airtable.tables',
|
|
canonicalParamId: 'tableIdOrName',
|
|
mode: 'basic',
|
|
dependsOn: ['baseSelector'],
|
|
placeholder: 'Select a table',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'tableIdOrName',
|
|
title: 'Table Name or ID',
|
|
type: 'short-input',
|
|
canonicalParamId: 'tableIdOrName',
|
|
mode: 'advanced',
|
|
placeholder: 'e.g. Tasks or tblXXXXXXXXXXXXXX',
|
|
required: true,
|
|
},
|
|
{
|
|
id: 'viewId',
|
|
title: 'View',
|
|
type: 'short-input',
|
|
placeholder: 'e.g. Grid view or viwXXXXXXXXXXXXXX',
|
|
required: false,
|
|
},
|
|
{
|
|
id: 'titleField',
|
|
title: 'Title Field',
|
|
type: 'short-input',
|
|
placeholder: 'e.g. Name',
|
|
required: false,
|
|
},
|
|
{
|
|
id: 'maxRecords',
|
|
title: 'Max Records',
|
|
type: 'short-input',
|
|
placeholder: 'e.g. 1000 (default: unlimited)',
|
|
required: false,
|
|
},
|
|
],
|
|
|
|
tagDefinitions: [{ id: 'createdTime', displayName: 'Created Time', fieldType: 'date' }],
|
|
}
|