mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-29 18:36:23 +02:00
33 lines
885 B
TypeScript
33 lines
885 B
TypeScript
|
|
/**
|
||
|
|
* Composio display-name map: toolkit slug → human-readable name.
|
||
|
|
* Single source of truth — used by both core and renderer.
|
||
|
|
*/
|
||
|
|
export const COMPOSIO_DISPLAY_NAMES: Record<string, string> = {
|
||
|
|
gmail: 'Gmail',
|
||
|
|
slack: 'Slack',
|
||
|
|
microsoft_outlook: 'Microsoft Outlook',
|
||
|
|
microsoft_teams: 'Microsoft Teams',
|
||
|
|
googlecalendar: 'Google Calendar',
|
||
|
|
googledocs: 'Google Docs',
|
||
|
|
googlesheets: 'Google Sheets',
|
||
|
|
notion: 'Notion',
|
||
|
|
airtable: 'Airtable',
|
||
|
|
calendly: 'Calendly',
|
||
|
|
cal: 'Cal.com',
|
||
|
|
googledrive: 'Google Drive',
|
||
|
|
dropbox: 'Dropbox',
|
||
|
|
onedrive: 'OneDrive',
|
||
|
|
github: 'GitHub',
|
||
|
|
linear: 'Linear',
|
||
|
|
jira: 'Jira',
|
||
|
|
asana: 'Asana',
|
||
|
|
trello: 'Trello',
|
||
|
|
hubspot: 'HubSpot',
|
||
|
|
salesforce: 'Salesforce',
|
||
|
|
linkedin: 'LinkedIn',
|
||
|
|
twitter: 'X',
|
||
|
|
reddit: 'Reddit',
|
||
|
|
intercom: 'Intercom',
|
||
|
|
zendesk: 'Zendesk',
|
||
|
|
};
|