Skip to content

Commit 2b01f46

Browse files
committed
fix docs script
1 parent 4b3f498 commit 2b01f46

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+4831
-29
lines changed

apps/docs/content/docs/en/tools/ahrefs.mdx

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ Get a list of backlinks pointing to a target domain or URL. Returns details abou
7272
| Parameter | Type | Description |
7373
| --------- | ---- | ----------- |
7474
| `backlinks` | array | List of backlinks pointing to the target |
75+
|`urlFrom` | string | The URL of the page containing the backlink |
76+
|`urlTo` | string | The URL being linked to |
77+
|`anchor` | string | The anchor text of the link |
78+
|`domainRatingSource` | number | Domain Rating of the linking domain |
79+
|`isDofollow` | boolean | Whether the link is dofollow |
80+
|`firstSeen` | string | When the backlink was first discovered |
81+
|`lastVisited` | string | When the backlink was last checked |
7582

7683
### `ahrefs_backlinks_stats`
7784

@@ -91,6 +98,12 @@ Get backlink statistics for a target domain or URL. Returns totals for different
9198
| Parameter | Type | Description |
9299
| --------- | ---- | ----------- |
93100
| `stats` | object | Backlink statistics summary |
101+
|`total` | number | Total number of live backlinks |
102+
|`dofollow` | number | Number of dofollow backlinks |
103+
|`nofollow` | number | Number of nofollow backlinks |
104+
|`text` | number | Number of text backlinks |
105+
|`image` | number | Number of image backlinks |
106+
|`redirect` | number | Number of redirect backlinks |
94107

95108
### `ahrefs_referring_domains`
96109

@@ -112,6 +125,12 @@ Get a list of domains that link to a target domain or URL. Returns unique referr
112125
| Parameter | Type | Description |
113126
| --------- | ---- | ----------- |
114127
| `referringDomains` | array | List of domains linking to the target |
128+
|`domain` | string | The referring domain |
129+
|`domainRating` | number | Domain Rating of the referring domain |
130+
|`backlinks` | number | Total number of backlinks from this domain |
131+
|`dofollowBacklinks` | number | Number of dofollow backlinks from this domain |
132+
|`firstSeen` | string | When the domain was first seen linking |
133+
|`lastVisited` | string | When the domain was last checked |
115134

116135
### `ahrefs_organic_keywords`
117136

@@ -134,6 +153,12 @@ Get organic keywords that a target domain or URL ranks for in Google search resu
134153
| Parameter | Type | Description |
135154
| --------- | ---- | ----------- |
136155
| `keywords` | array | List of organic keywords the target ranks for |
156+
|`keyword` | string | The keyword |
157+
|`volume` | number | Monthly search volume |
158+
|`position` | number | Current ranking position |
159+
|`url` | string | The URL that ranks for this keyword |
160+
|`traffic` | number | Estimated monthly organic traffic |
161+
|`keywordDifficulty` | number | Keyword difficulty score \(0-100\) |
137162

138163
### `ahrefs_top_pages`
139164

@@ -157,6 +182,11 @@ Get the top pages of a target domain sorted by organic traffic. Returns page URL
157182
| Parameter | Type | Description |
158183
| --------- | ---- | ----------- |
159184
| `pages` | array | List of top pages by organic traffic |
185+
|`url` | string | The page URL |
186+
|`traffic` | number | Estimated monthly organic traffic |
187+
|`keywords` | number | Number of keywords the page ranks for |
188+
|`topKeyword` | string | The top keyword driving traffic to this page |
189+
|`value` | number | Estimated traffic value in USD |
160190

161191
### `ahrefs_keyword_overview`
162192

@@ -175,6 +205,14 @@ Get detailed metrics for a keyword including search volume, keyword difficulty,
175205
| Parameter | Type | Description |
176206
| --------- | ---- | ----------- |
177207
| `overview` | object | Keyword metrics overview |
208+
|`keyword` | string | The analyzed keyword |
209+
|`searchVolume` | number | Monthly search volume |
210+
|`keywordDifficulty` | number | Keyword difficulty score \(0-100\) |
211+
|`cpc` | number | Cost per click in USD |
212+
|`clicks` | number | Estimated clicks per month |
213+
|`clicksPercentage` | number | Percentage of searches that result in clicks |
214+
|`parentTopic` | string | The parent topic for this keyword |
215+
|`trafficPotential` | number | Estimated traffic potential if ranking #1 |
178216

179217
### `ahrefs_broken_backlinks`
180218

@@ -196,5 +234,10 @@ Get a list of broken backlinks pointing to a target domain or URL. Useful for id
196234
| Parameter | Type | Description |
197235
| --------- | ---- | ----------- |
198236
| `brokenBacklinks` | array | List of broken backlinks |
237+
|`urlFrom` | string | The URL of the page containing the broken link |
238+
|`urlTo` | string | The broken URL being linked to |
239+
|`httpCode` | number | HTTP status code \(e.g., 404, 410\) |
240+
|`anchor` | string | The anchor text of the link |
241+
|`domainRatingSource` | number | Domain Rating of the linking domain |
199242

200243

apps/docs/content/docs/en/tools/airtable.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Read records from an Airtable table
5050
| Parameter | Type | Description |
5151
| --------- | ---- | ----------- |
5252
| `records` | json | Array of retrieved Airtable records |
53+
| `metadata` | json | Operation metadata including pagination offset and total records count |
5354

5455
### `airtable_get_record`
5556

@@ -88,6 +89,7 @@ Write new records to an Airtable table
8889
| Parameter | Type | Description |
8990
| --------- | ---- | ----------- |
9091
| `records` | json | Array of created Airtable records |
92+
| `metadata` | json | Operation metadata |
9193

9294
### `airtable_update_record`
9395

@@ -126,5 +128,6 @@ Update multiple existing records in an Airtable table
126128
| Parameter | Type | Description |
127129
| --------- | ---- | ----------- |
128130
| `records` | json | Array of updated Airtable records |
131+
| `metadata` | json | Operation metadata including record count and updated record IDs |
129132

130133

apps/docs/content/docs/en/tools/arxiv.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Search for academic papers on ArXiv by keywords, authors, titles, or other field
5252
| Parameter | Type | Description |
5353
| --------- | ---- | ----------- |
5454
| `papers` | json | Array of papers matching the search query |
55+
| `totalResults` | number | Total number of results found for the search query |
5556

5657
### `arxiv_get_paper`
5758

@@ -85,5 +86,6 @@ Search for papers by a specific author on ArXiv.
8586
| Parameter | Type | Description |
8687
| --------- | ---- | ----------- |
8788
| `authorPapers` | json | Array of papers authored by the specified author |
89+
| `totalResults` | number | Total number of papers found for the author |
8890

8991

apps/docs/content/docs/en/tools/asana.mdx

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,18 @@ Retrieve a single task by GID or get multiple tasks with filters
4444
| `notes` | string | Task notes or description |
4545
| `completed` | boolean | Whether the task is completed |
4646
| `assignee` | object | Assignee details |
47+
|`gid` | string | Assignee GID |
48+
|`name` | string | Assignee name |
49+
| `created_by` | object | Creator details |
50+
|`gid` | string | Creator GID |
51+
|`name` | string | Creator name |
52+
| `due_on` | string | Due date \(YYYY-MM-DD\) |
53+
| `created_at` | string | Task creation timestamp |
54+
| `modified_at` | string | Task last modified timestamp |
55+
| `tasks` | array | Array of tasks \(when fetching multiple\) |
56+
|`gid` | string | Task GID |
57+
|`name` | string | Task name |
58+
|`completed` | boolean | Completion status |
4759

4860
### `asana_create_task`
4961

@@ -116,6 +128,9 @@ Retrieve all projects from an Asana workspace
116128
| `success` | boolean | Operation success status |
117129
| `ts` | string | Timestamp of the response |
118130
| `projects` | array | Array of projects |
131+
|`gid` | string | Project GID |
132+
|`name` | string | Project name |
133+
|`resource_type` | string | Resource type \(project\) |
119134

120135
### `asana_search_tasks`
121136

@@ -138,6 +153,22 @@ Search for tasks in an Asana workspace
138153
| `success` | boolean | Operation success status |
139154
| `ts` | string | Timestamp of the response |
140155
| `tasks` | array | Array of matching tasks |
156+
|`gid` | string | Assignee GID |
157+
|`resource_type` | string | Resource type |
158+
|`resource_subtype` | string | Resource subtype |
159+
|`name` | string | Assignee name |
160+
|`notes` | string | Task notes |
161+
|`completed` | boolean | Completion status |
162+
|`assignee` | object | Assignee details |
163+
|`gid` | string | Assignee GID |
164+
|`name` | string | Assignee name |
165+
|`due_on` | string | Due date |
166+
|`created_at` | string | Creation timestamp |
167+
|`modified_at` | string | Modified timestamp |
168+
| `next_page` | object | Pagination info |
169+
|`offset` | string | Offset token |
170+
|`path` | string | API path |
171+
|`uri` | string | Full URI |
141172

142173
### `asana_add_comment`
143174

@@ -160,5 +191,7 @@ Add a comment (story) to an Asana task
160191
| `text` | string | Comment text content |
161192
| `created_at` | string | Comment creation timestamp |
162193
| `created_by` | object | Comment author details |
194+
|`gid` | string | Author GID |
195+
|`name` | string | Author name |
163196

164197

apps/docs/content/docs/en/tools/calendly.mdx

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ Get information about the currently authenticated Calendly user
4747
| Parameter | Type | Description |
4848
| --------- | ---- | ----------- |
4949
| `resource` | object | Current user information |
50+
|`uri` | string | Canonical reference to the user |
51+
|`name` | string | User full name |
52+
|`slug` | string | Unique identifier for the user in URLs |
53+
|`email` | string | User email address |
54+
|`scheduling_url` | string | URL to the user |
55+
|`timezone` | string | User timezone |
56+
|`avatar_url` | string | URL to user avatar image |
57+
|`created_at` | string | ISO timestamp when user was created |
58+
|`updated_at` | string | ISO timestamp when user was last updated |
59+
|`current_organization` | string | URI of current organization |
5060

5161
### `calendly_list_event_types`
5262

@@ -69,6 +79,25 @@ Retrieve a list of all event types for a user or organization
6979
| Parameter | Type | Description |
7080
| --------- | ---- | ----------- |
7181
| `collection` | array | Array of event type objects |
82+
|`uri` | string | Canonical reference to the event type |
83+
|`name` | string | Event type name |
84+
|`active` | boolean | Whether the event type is active |
85+
|`booking_method` | string | Booking method \(e.g., |
86+
|`color` | string | Hex color code |
87+
|`created_at` | string | ISO timestamp of creation |
88+
|`description_html` | string | HTML formatted description |
89+
|`description_plain` | string | Plain text description |
90+
|`duration` | number | Duration in minutes |
91+
|`scheduling_url` | string | URL to scheduling page |
92+
|`slug` | string | Unique identifier for URLs |
93+
|`type` | string | Event type classification |
94+
|`updated_at` | string | ISO timestamp of last update |
95+
| `pagination` | object | Pagination information |
96+
|`count` | number | Number of results in this page |
97+
|`next_page` | string | URL to next page \(if available\) |
98+
|`previous_page` | string | URL to previous page \(if available\) |
99+
|`next_page_token` | string | Token for next page |
100+
|`previous_page_token` | string | Token for previous page |
72101

73102
### `calendly_get_event_type`
74103

@@ -86,6 +115,30 @@ Get detailed information about a specific event type
86115
| Parameter | Type | Description |
87116
| --------- | ---- | ----------- |
88117
| `resource` | object | Event type details |
118+
|`uri` | string | Canonical reference to the event type |
119+
|`name` | string | Question text |
120+
|`active` | boolean | Whether the event type is active |
121+
|`booking_method` | string | Booking method |
122+
|`color` | string | Hex color code |
123+
|`created_at` | string | ISO timestamp of creation |
124+
|`custom_questions` | array | Custom questions for invitees |
125+
|`name` | string | Question text |
126+
|`type` | string | Question type \(text, single_select, multi_select, etc.\) |
127+
|`position` | number | Question order |
128+
|`enabled` | boolean | Whether question is enabled |
129+
|`required` | boolean | Whether question is required |
130+
|`answer_choices` | array | Available answer choices |
131+
|`type` | string | Event type classification |
132+
|`position` | number | Question order |
133+
|`enabled` | boolean | Whether question is enabled |
134+
|`required` | boolean | Whether question is required |
135+
|`answer_choices` | array | Available answer choices |
136+
|`description_html` | string | HTML formatted description |
137+
|`description_plain` | string | Plain text description |
138+
|`duration` | number | Duration in minutes |
139+
|`scheduling_url` | string | URL to scheduling page |
140+
|`slug` | string | Unique identifier for URLs |
141+
|`updated_at` | string | ISO timestamp of last update |
89142

90143
### `calendly_list_scheduled_events`
91144

@@ -111,6 +164,30 @@ Retrieve a list of scheduled events for a user or organization
111164
| Parameter | Type | Description |
112165
| --------- | ---- | ----------- |
113166
| `collection` | array | Array of scheduled event objects |
167+
|`uri` | string | Canonical reference to the event |
168+
|`name` | string | Event name |
169+
|`status` | string | Event status \(active or canceled\) |
170+
|`start_time` | string | ISO timestamp of event start |
171+
|`end_time` | string | ISO timestamp of event end |
172+
|`event_type` | string | URI of the event type |
173+
|`location` | string | Location description |
174+
|`type` | string | Location type \(e.g., |
175+
|`join_url` | string | URL to join online meeting \(if applicable\) |
176+
|`invitees_counter` | object | Invitee count information |
177+
|`total` | number | Total number of invitees |
178+
|`active` | number | Number of active invitees |
179+
|`limit` | number | Maximum number of invitees |
180+
|`total` | number | Total number of invitees |
181+
|`active` | number | Number of active invitees |
182+
|`limit` | number | Maximum number of invitees |
183+
|`created_at` | string | ISO timestamp of event creation |
184+
|`updated_at` | string | ISO timestamp of last update |
185+
| `pagination` | object | Pagination information |
186+
|`count` | number | Number of results in this page |
187+
|`next_page` | string | URL to next page \(if available\) |
188+
|`previous_page` | string | URL to previous page \(if available\) |
189+
|`next_page_token` | string | Token for next page |
190+
|`previous_page_token` | string | Token for previous page |
114191

115192
### `calendly_get_scheduled_event`
116193

@@ -128,6 +205,36 @@ Get detailed information about a specific scheduled event
128205
| Parameter | Type | Description |
129206
| --------- | ---- | ----------- |
130207
| `resource` | object | Scheduled event details |
208+
|`uri` | string | Canonical reference to the event |
209+
|`name` | string | Event name |
210+
|`status` | string | Event status \(active or canceled\) |
211+
|`start_time` | string | ISO timestamp of event start |
212+
|`end_time` | string | ISO timestamp of event end |
213+
|`event_type` | string | URI of the event type |
214+
|`location` | string | Location description |
215+
|`type` | string | Location type |
216+
|`join_url` | string | URL to join online meeting |
217+
|`invitees_counter` | object | Invitee count information |
218+
|`total` | number | Total number of invitees |
219+
|`active` | number | Number of active invitees |
220+
|`limit` | number | Maximum number of invitees |
221+
|`total` | number | Total number of invitees |
222+
|`active` | number | Number of active invitees |
223+
|`limit` | number | Maximum number of invitees |
224+
|`event_memberships` | array | Event hosts/members |
225+
|`user` | string | User URI |
226+
|`user_email` | string | User email |
227+
|`user_name` | string | User name |
228+
|`user` | string | User URI |
229+
|`user_email` | string | User email |
230+
|`user_name` | string | User name |
231+
|`event_guests` | array | Additional guests |
232+
|`email` | string | Guest email |
233+
|`created_at` | string | When guest was added |
234+
|`updated_at` | string | When guest info was updated |
235+
|`email` | string | Guest email |
236+
|`created_at` | string | ISO timestamp of event creation |
237+
|`updated_at` | string | ISO timestamp of last update |
131238

132239
### `calendly_list_event_invitees`
133240

@@ -150,6 +257,32 @@ Retrieve a list of invitees for a scheduled event
150257
| Parameter | Type | Description |
151258
| --------- | ---- | ----------- |
152259
| `collection` | array | Array of invitee objects |
260+
|`uri` | string | Canonical reference to the invitee |
261+
|`email` | string | Invitee email address |
262+
|`name` | string | Invitee full name |
263+
|`first_name` | string | Invitee first name |
264+
|`last_name` | string | Invitee last name |
265+
|`status` | string | Invitee status \(active or canceled\) |
266+
|`questions_and_answers` | array | Responses to custom questions |
267+
|`question` | string | Question text |
268+
|`answer` | string | Invitee answer |
269+
|`position` | number | Question order |
270+
|`question` | string | Question text |
271+
|`answer` | string | Invitee answer |
272+
|`position` | number | Question order |
273+
|`timezone` | string | Invitee timezone |
274+
|`event` | string | URI of the scheduled event |
275+
|`created_at` | string | ISO timestamp when invitee was created |
276+
|`updated_at` | string | ISO timestamp when invitee was updated |
277+
|`cancel_url` | string | URL to cancel the booking |
278+
|`reschedule_url` | string | URL to reschedule the booking |
279+
|`rescheduled` | boolean | Whether invitee rescheduled |
280+
| `pagination` | object | Pagination information |
281+
|`count` | number | Number of results in this page |
282+
|`next_page` | string | URL to next page \(if available\) |
283+
|`previous_page` | string | URL to previous page \(if available\) |
284+
|`next_page_token` | string | Token for next page |
285+
|`previous_page_token` | string | Token for previous page |
153286

154287
### `calendly_cancel_event`
155288

@@ -168,5 +301,9 @@ Cancel a scheduled event
168301
| Parameter | Type | Description |
169302
| --------- | ---- | ----------- |
170303
| `resource` | object | Cancellation details |
304+
|`canceler_type` | string | Type of canceler \(host or invitee\) |
305+
|`canceled_by` | string | Name of person who canceled |
306+
|`reason` | string | Cancellation reason |
307+
|`created_at` | string | ISO timestamp when event was canceled |
171308

172309

apps/docs/content/docs/en/tools/clay.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,10 @@ Populate Clay with data from a JSON file. Enables direct communication and notif
6161
| --------- | ---- | ----------- |
6262
| `data` | json | Response data from Clay webhook |
6363
| `metadata` | object | Webhook response metadata |
64+
|`status` | number | HTTP status code |
65+
|`statusText` | string | HTTP status text |
66+
|`headers` | object | Response headers from Clay |
67+
|`timestamp` | string | ISO timestamp when webhook was received |
68+
|`contentType` | string | Content type of the response |
6469

6570

0 commit comments

Comments
 (0)