chore: import upstream snapshot with attribution
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

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
+79
View File
@@ -0,0 +1,79 @@
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 recorders 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' },
],
}