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
fix(docs): keep hidden params the block mapper supplies
The carve-out only recognized an identity match between a subBlock id and a
tool param, so a block that renames or assembles the value in
tools.config.params was invisible to it -- and the row was dropped even
though the user types it.
Cal.com's attendee (required) is assembled from attendeeName/attendeeEmail/
attendeeTimeZone; JSM's workspaceId comes from assetWorkspaceId; Textract
writes parameters.file from a field whose canonicalParamId is 'document',
which left the Mistral PDF Parser documenting zero inputs.
Collects params written by any accumulator identifier, not just 'result',
since the two real mappers use different names. Object keys are collected
without proving they are top-level, so a nested key can produce a false
keep -- one hard-to-set row is better than hiding a required input.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/calcom.mdx
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ 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\)|
47
48
|`guests`| array | No | Array of guest email addresses |
48
49
|`lengthInMinutes`| number | No | Duration of the booking in minutes \(overrides event type default\)|
49
50
|`metadata`| object | No | Custom metadata to attach to the booking |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/integrations/google_drive.mdx
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ 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\)|
46
47
|`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. |
47
48
|`pageSize`| number | No | The maximum number of files to return \(default: 100\)|
48
49
@@ -226,6 +227,7 @@ Create a new folder in Google Drive with complete metadata returned
226
227
| --------- | ---- | -------- | ----------- |
227
228
|`fileName`| string | Yes | Name of the folder to create |
228
229
|`folderSelector`| string | No | Google Drive parent folder ID to create the folder in \(e.g., 1ABCxyz...\)|
230
+
|`folderId`| string | No | ID of the parent folder \(internal use\)|
229
231
230
232
#### Output
231
233
@@ -283,6 +285,7 @@ Upload a file to Google Drive with complete metadata returned
283
285
|`content`| string | No | Text content to upload \(use this OR file, not both\)|
284
286
|`mimeType`| string | No | The MIME type of the file to upload \(auto-detected from file if not provided\)|
285
287
|`folderSelector`| string | No | Google Drive folder ID to upload the file to \(e.g., 1ABCxyz...\)|
288
+
|`folderId`| string | No | The ID of the folder to upload the file to \(internal use\)|
0 commit comments