You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
generate-docs never read visibility, so every tool param appeared in the
public Input table -- including params marked visibility:'hidden', which are
shown to neither the user nor the LLM. Several are credential-shaped
(idToken, instanceUrl, apiToken, cloudId), so the docs told integrators they
could set values they cannot reach.
A hidden param is now dropped only when the block declares no subBlock for
it, matched on id or canonicalParamId -- a param can be hidden on the tool
because the block injects it while the block still renders it as a required
field the user types.
blankStringsAndComments kept the first and last character of every match.
That is right for a quoted string, where both are delimiters, but for a '//'
comment the last character is arbitrary source text, so a commented-out
'// options: [' left an unbalanced bracket that derailed the subBlock
scan. Parsing now throws rather than silently reporting that a block
exposes nothing, since that fallback was the destructive one.
Also corrects the LinkedIn w_member_social consent-screen description, which
read 'Access LinkedIn profile' for a scope that posts on the user's behalf.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/calcom.mdx
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,6 @@ Create a new booking on Cal.com
44
44
| --------- | ---- | -------- | ----------- |
45
45
|`eventTypeId`| number | Yes | The ID of the event type to book |
46
46
|`start`| string | Yes | Start time in UTC ISO 8601 format \(e.g., 2024-01-15T09:00:00Z\)|
47
-
|`attendee`| object | Yes | Attendee information object with name, email, timeZone, and optional phoneNumber \(constructed from individual attendee fields\)|
48
47
|`guests`| array | No | Array of guest email addresses |
49
48
|`lengthInMinutes`| number | No | Duration of the booking in minutes \(overrides event type default\)|
50
49
|`metadata`| object | No | Custom metadata to attach to the booking |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_calendar.mdx
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,6 @@ List events from Google Calendar. Returns API-aligned fields only.
89
89
|`maxResults`| number | No | Maximum number of events to return \(max 2500\)|
90
90
|`pageToken`| string | No | Token for retrieving the next page of results |
91
91
|`orderBy`| string | No | Order of events: startTime \(chronological, the default\) or updated \(last-modified\). startTime is always valid here because singleEvents is set. |
92
-
|`showDeleted`| boolean | No | Include deleted events |
93
92
94
93
#### Output
95
94
@@ -227,7 +226,6 @@ Get instances of a recurring event from Google Calendar. Returns API-aligned fie
227
226
|`timeMax`| string | No | Upper bound for instances \(RFC3339 timestamp, e.g., 2025-06-04T00:00:00Z\)|
228
227
|`maxResults`| number | No | Maximum number of instances to return \(default 250, max 2500\)|
229
228
|`pageToken`| string | No | Token for retrieving subsequent pages of results |
230
-
|`showDeleted`| boolean | No | Include deleted instances |
231
229
232
230
#### Output
233
231
@@ -248,8 +246,6 @@ List all calendars in the user's calendar list. Returns API-aligned fields only.
248
246
|`minAccessRole`| string | No | Minimum access role for returned calendars: freeBusyReader, reader, writer, or owner |
249
247
|`maxResults`| number | No | Maximum number of calendars to return \(default 100, max 250\)|
250
248
|`pageToken`| string | No | Token for retrieving subsequent pages of results |
251
-
|`showDeleted`| boolean | No | Include deleted calendars |
252
-
|`showHidden`| boolean | No | Include hidden calendars |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_drive.mdx
-8Lines changed: 0 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,10 +43,8 @@ List files and folders in Google Drive with complete metadata
43
43
| Parameter | Type | Required | Description |
44
44
| --------- | ---- | -------- | ----------- |
45
45
|`folderSelector`| string | No | Google Drive folder ID to list files from \(e.g., 1ABCxyz...\)|
46
-
|`folderId`| string | No | The ID of the folder to list files from \(internal use\)|
47
46
|`query`| string | No | Search term to filter files by name \(e.g. "budget" finds files with "budget" in the name\). Do NOT use Google Drive query syntax here - just provide a plain search term. |
48
47
|`pageSize`| number | No | The maximum number of files to return \(default: 100\)|
49
-
|`pageToken`| string | No | The page token to use for pagination |
50
48
51
49
#### Output
52
50
@@ -228,7 +226,6 @@ Create a new folder in Google Drive with complete metadata returned
228
226
| --------- | ---- | -------- | ----------- |
229
227
|`fileName`| string | Yes | Name of the folder to create |
230
228
|`folderSelector`| string | No | Google Drive parent folder ID to create the folder in \(e.g., 1ABCxyz...\)|
231
-
|`folderId`| string | No | ID of the parent folder \(internal use\)|
232
229
233
230
#### Output
234
231
@@ -286,7 +283,6 @@ Upload a file to Google Drive with complete metadata returned
286
283
|`content`| string | No | Text content to upload \(use this OR file, not both\)|
287
284
|`mimeType`| string | No | The MIME type of the file to upload \(auto-detected from file if not provided\)|
288
285
|`folderSelector`| string | No | Google Drive folder ID to upload the file to \(e.g., 1ABCxyz...\)|
289
-
|`folderId`| string | No | The ID of the folder to upload the file to \(internal use\)|
290
286
291
287
#### Output
292
288
@@ -485,7 +481,6 @@ Search for files in Google Drive using advanced query syntax (e.g., fullText con
0 commit comments