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
80 lines
2.5 KiB
TypeScript
80 lines
2.5 KiB
TypeScript
import { FathomIcon } from '@/components/icons'
|
||
import type { ConnectorMeta } from '@/connectors/types'
|
||
|
||
export const fathomConnectorMeta: ConnectorMeta = {
|
||
id: 'fathom',
|
||
name: 'Fathom',
|
||
description: 'Sync meeting transcripts and summaries from Fathom',
|
||
version: '1.0.0',
|
||
icon: FathomIcon,
|
||
|
||
auth: {
|
||
mode: 'apiKey',
|
||
label: 'API Key',
|
||
placeholder: 'Enter your Fathom API key',
|
||
},
|
||
|
||
supportsIncrementalSync: true,
|
||
|
||
configFields: [
|
||
{
|
||
id: 'recordedBy',
|
||
title: 'Filter by Recorder Email',
|
||
type: 'short-input',
|
||
placeholder: 'e.g. john@example.com',
|
||
required: false,
|
||
description: 'Only sync meetings recorded by this email',
|
||
},
|
||
{
|
||
id: 'teams',
|
||
title: 'Filter by Team',
|
||
type: 'short-input',
|
||
placeholder: 'e.g. Sales',
|
||
required: false,
|
||
description: 'Only sync meetings belonging to this team',
|
||
},
|
||
{
|
||
id: 'meetingType',
|
||
title: 'Filter by Meeting Type',
|
||
type: 'dropdown',
|
||
mode: 'advanced',
|
||
required: false,
|
||
description:
|
||
'Only sync internal meetings (everyone shares the recorder’s domain) or external meetings (at least one outside attendee). Leave as All to sync both.',
|
||
options: [
|
||
{ id: 'all', label: 'All meetings' },
|
||
{ id: 'one_or_more_external', label: 'External (customer-facing) only' },
|
||
{ id: 'only_internal', label: 'Internal only' },
|
||
],
|
||
},
|
||
{
|
||
id: 'inviteeDomains',
|
||
title: 'Filter by Attendee Domain',
|
||
type: 'short-input',
|
||
mode: 'advanced',
|
||
placeholder: 'e.g. acme.com',
|
||
required: false,
|
||
description:
|
||
'Only sync meetings that include a calendar invitee from this company email domain (exact match).',
|
||
},
|
||
{
|
||
id: 'maxMeetings',
|
||
title: 'Max Meetings',
|
||
type: 'short-input',
|
||
required: false,
|
||
placeholder: 'e.g. 200 (default: unlimited)',
|
||
},
|
||
],
|
||
|
||
tagDefinitions: [
|
||
{ id: 'title', displayName: 'Title', fieldType: 'text' },
|
||
{ id: 'recordedByEmail', displayName: 'Recorded By (Email)', fieldType: 'text' },
|
||
{ id: 'recordedByName', displayName: 'Recorded By (Name)', fieldType: 'text' },
|
||
{ id: 'team', displayName: 'Team', fieldType: 'text' },
|
||
{ id: 'meetingType', displayName: 'Meeting Type', fieldType: 'text' },
|
||
{ id: 'transcriptLanguage', displayName: 'Language', fieldType: 'text' },
|
||
{ id: 'durationSeconds', displayName: 'Duration (seconds)', fieldType: 'number' },
|
||
{ id: 'meetingDate', displayName: 'Meeting Date', fieldType: 'date' },
|
||
],
|
||
}
|