Skip to content

Commit fc64421

Browse files
committed
chore(kb-connectors): strip redundant field-level descriptions
Removed 41 inline `description:` lines from configFields across 16 connectors (Slack, MS Teams, GCal, Gmail, Notion, Linear-adjacent, Discord, Dropbox, Evernote, Fireflies, Google Sheets, Intercom, Obsidian, Outlook, Reddit, ServiceNow, WordPress, Zendesk). They mostly restated the field title (e.g. "Channels to sync messages from" under a "Channels" label) and cluttered the add/edit modal. Field titles + placeholders already communicate intent. Connector-level `description` (used in the connector picker grid) is unchanged.
1 parent 1edfc47 commit fc64421

16 files changed

Lines changed: 0 additions & 41 deletions

File tree

apps/sim/connectors/discord/discord.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ export const discordConnector: ConnectorConfig = {
154154
type: 'short-input',
155155
placeholder: 'e.g. 123456789012345678',
156156
required: true,
157-
description: 'The Discord channel ID to sync messages from',
158157
},
159158
{
160159
id: 'maxMessages',

apps/sim/connectors/dropbox/dropbox.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ export const dropboxConnector: ConnectorConfig = {
115115
type: 'short-input',
116116
placeholder: 'e.g. /Documents (default: entire Dropbox)',
117117
required: false,
118-
description: 'Leave empty to sync all supported files',
119118
},
120119
{
121120
id: 'maxFiles',

apps/sim/connectors/evernote/evernote.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,6 @@ export const evernoteConnector: ConnectorConfig = {
383383
type: 'short-input',
384384
placeholder: 'Leave empty to sync all notebooks',
385385
required: false,
386-
description: 'Sync only notes from this notebook (optional)',
387386
},
388387
],
389388

apps/sim/connectors/fireflies/fireflies.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ export const firefliesConnector: ConnectorConfig = {
140140
type: 'short-input',
141141
placeholder: 'e.g. john@example.com',
142142
required: false,
143-
description: 'Only sync transcripts hosted by this email',
144143
},
145144
{
146145
id: 'maxTranscripts',

apps/sim/connectors/gmail/gmail.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,6 @@ export const gmailConnector: ConnectorConfig = {
360360
multi: true,
361361
placeholder: 'Select one or more labels',
362362
required: false,
363-
description: 'Only sync emails matching any of these labels. Leave empty for all mail.',
364363
},
365364
{
366365
id: 'label',
@@ -371,7 +370,6 @@ export const gmailConnector: ConnectorConfig = {
371370
multi: true,
372371
placeholder: 'e.g. INBOX, IMPORTANT (comma-separated; commas in label names not supported)',
373372
required: false,
374-
description: 'Only sync emails matching any of these labels. Leave empty for all mail.',
375373
},
376374
{
377375
id: 'dateRange',
@@ -413,7 +411,6 @@ export const gmailConnector: ConnectorConfig = {
413411
type: 'short-input',
414412
placeholder: 'e.g. from:boss@company.com subject:report has:attachment',
415413
required: false,
416-
description: 'Additional Gmail search filter. Uses the same syntax as the Gmail search bar.',
417414
},
418415
{
419416
id: 'maxThreads',

apps/sim/connectors/google-calendar/google-calendar.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ export const googleCalendarConnector: ConnectorConfig = {
267267
multi: true,
268268
placeholder: 'Select one or more calendars',
269269
required: false,
270-
description: 'Calendars to sync from. Defaults to your primary calendar.',
271270
},
272271
{
273272
id: 'calendarId',
@@ -299,7 +298,6 @@ export const googleCalendarConnector: ConnectorConfig = {
299298
type: 'short-input',
300299
placeholder: 'e.g. standup, sprint review (optional)',
301300
required: false,
302-
description: 'Filter events by text search across all fields.',
303301
},
304302
{
305303
id: 'maxEvents',

apps/sim/connectors/google-sheets/google-sheets.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@ export const googleSheetsConnector: ConnectorConfig = {
216216
type: 'short-input',
217217
placeholder: 'e.g. 1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgVE2upms',
218218
required: true,
219-
description: 'The ID from the spreadsheet URL: docs.google.com/spreadsheets/d/{ID}/edit',
220219
},
221220
{
222221
id: 'sheetFilter',

apps/sim/connectors/intercom/intercom.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,6 @@ export const intercomConnector: ConnectorConfig = {
285285
title: 'Content Type',
286286
type: 'dropdown',
287287
required: true,
288-
description: 'Choose what to sync from Intercom',
289288
options: [
290289
{ label: 'Articles Only', id: 'articles' },
291290
{ label: 'Conversations Only', id: 'conversations' },
@@ -297,7 +296,6 @@ export const intercomConnector: ConnectorConfig = {
297296
title: 'Article State',
298297
type: 'dropdown',
299298
required: false,
300-
description: 'Filter articles by state (default: published)',
301299
options: [
302300
{ label: 'Published', id: 'published' },
303301
{ label: 'Draft', id: 'draft' },
@@ -309,7 +307,6 @@ export const intercomConnector: ConnectorConfig = {
309307
title: 'Conversation State',
310308
type: 'dropdown',
311309
required: false,
312-
description: 'Filter conversations by state (default: all)',
313310
options: [
314311
{ label: 'Open', id: 'open' },
315312
{ label: 'Closed', id: 'closed' },
@@ -322,7 +319,6 @@ export const intercomConnector: ConnectorConfig = {
322319
type: 'short-input',
323320
required: false,
324321
placeholder: `e.g. 200 (default: ${DEFAULT_MAX_ITEMS})`,
325-
description: 'Maximum number of articles or conversations to sync',
326322
},
327323
],
328324

apps/sim/connectors/microsoft-teams/microsoft-teams.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,6 @@ export const microsoftTeamsConnector: ConnectorConfig = {
222222
mode: 'advanced',
223223
placeholder: 'e.g. fbe2bf47-16c8-47cf-b4a5-4b9b187c508b',
224224
required: true,
225-
description: 'The ID of the Microsoft Teams team',
226225
},
227226
{
228227
id: 'channelSelector',
@@ -245,7 +244,6 @@ export const microsoftTeamsConnector: ConnectorConfig = {
245244
multi: true,
246245
placeholder: 'e.g. General, Announcements (comma-separated for multiple)',
247246
required: true,
248-
description: 'Channel names or IDs to sync messages from',
249247
},
250248
{
251249
id: 'maxMessages',

apps/sim/connectors/obsidian/obsidian.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,15 +183,13 @@ export const obsidianConnector: ConnectorConfig = {
183183
type: 'short-input',
184184
placeholder: 'https://127.0.0.1:27124',
185185
required: true,
186-
description: 'Base URL of your Obsidian Local REST API (default port: 27124 for HTTPS)',
187186
},
188187
{
189188
id: 'folderPath',
190189
title: 'Folder Path',
191190
type: 'short-input',
192191
placeholder: 'e.g. Projects/Notes',
193192
required: false,
194-
description: 'Only sync notes from this folder (leave empty for entire vault)',
195193
},
196194
],
197195

0 commit comments

Comments
 (0)