Skip to content

Commit da46a38

Browse files
authored
v0.5.92: shortlinks, copilot scrolling stickiness, pagination
2 parents b7e377e + a0afb5d commit da46a38

File tree

78 files changed

+938
-715
lines changed

Some content is hidden

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

78 files changed

+938
-715
lines changed

apps/docs/app/global.css

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,6 @@ body {
5959
--content-gap: 1.75rem;
6060
}
6161

62-
/* Remove custom layout variable overrides to fallback to fumadocs defaults */
63-
64-
/* ============================================
65-
Navbar Light Mode Styling
66-
============================================ */
67-
6862
/* Light mode navbar and search styling */
6963
:root:not(.dark) nav {
7064
background-color: hsla(0, 0%, 96%, 0.85) !important;
@@ -88,10 +82,6 @@ body {
8882
-webkit-backdrop-filter: blur(25px) saturate(180%) brightness(0.6) !important;
8983
}
9084

91-
/* ============================================
92-
Custom Sidebar Styling (Turborepo-inspired)
93-
============================================ */
94-
9585
/* Floating sidebar appearance - remove background */
9686
[data-sidebar-container],
9787
#nd-sidebar {
@@ -468,10 +458,6 @@ aside[data-sidebar],
468458
writing-mode: horizontal-tb !important;
469459
}
470460

471-
/* ============================================
472-
Code Block Styling (Improved)
473-
============================================ */
474-
475461
/* Apply Geist Mono to code elements */
476462
code,
477463
pre,
@@ -532,10 +518,6 @@ pre code .line {
532518
color: var(--color-fd-primary);
533519
}
534520

535-
/* ============================================
536-
TOC (Table of Contents) Styling
537-
============================================ */
538-
539521
/* Remove the thin border-left on nested TOC items (keeps main indicator only) */
540522
#nd-toc a[style*="padding-inline-start"] {
541523
border-left: none !important;
@@ -554,10 +536,6 @@ main article,
554536
padding-bottom: 4rem;
555537
}
556538

557-
/* ============================================
558-
Center and Constrain Main Content Width
559-
============================================ */
560-
561539
/* Main content area - center and constrain like turborepo/raindrop */
562540
/* Note: --sidebar-offset and --toc-offset are now applied at #nd-docs-layout level */
563541
main[data-main] {

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ List actions from incident.io. Optionally filter by incident ID.
234234
| --------- | ---- | -------- | ----------- |
235235
| `apiKey` | string | Yes | incident.io API Key |
236236
| `incident_id` | string | No | Filter actions by incident ID \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
237-
| `page_size` | number | No | Number of actions to return per page \(e.g., 10, 25, 50\) |
238237

239238
#### Output
240239

@@ -309,7 +308,6 @@ List follow-ups from incident.io. Optionally filter by incident ID.
309308
| --------- | ---- | -------- | ----------- |
310309
| `apiKey` | string | Yes | incident.io API Key |
311310
| `incident_id` | string | No | Filter follow-ups by incident ID \(e.g., "01FCNDV6P870EA6S7TK1DSYDG0"\) |
312-
| `page_size` | number | No | Number of follow-ups to return per page \(e.g., 10, 25, 50\) |
313311

314312
#### Output
315313

@@ -396,6 +394,7 @@ List all users in your Incident.io workspace. Returns user details including id,
396394
| --------- | ---- | -------- | ----------- |
397395
| `apiKey` | string | Yes | Incident.io API Key |
398396
| `page_size` | number | No | Number of results to return per page \(e.g., 10, 25, 50\). Default: 25 |
397+
| `after` | string | No | Pagination cursor to fetch the next page of results |
399398

400399
#### Output
401400

@@ -406,6 +405,10 @@ List all users in your Incident.io workspace. Returns user details including id,
406405
|`name` | string | Full name of the user |
407406
|`email` | string | Email address of the user |
408407
|`role` | string | Role of the user in the workspace |
408+
| `pagination_meta` | object | Pagination metadata |
409+
|`after` | string | Cursor for next page |
410+
|`page_size` | number | Number of items per page |
411+
|`total_record_count` | number | Total number of records |
409412

410413
### `incidentio_users_show`
411414

@@ -644,7 +647,6 @@ List all escalation policies in incident.io
644647
| Parameter | Type | Required | Description |
645648
| --------- | ---- | -------- | ----------- |
646649
| `apiKey` | string | Yes | incident.io API Key |
647-
| `page_size` | number | No | Number of results per page \(e.g., 10, 25, 50\). Default: 25 |
648650

649651
#### Output
650652

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

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Retrieve all deals from Pipedrive with optional filters
4949
| `pipeline_id` | string | No | If supplied, only deals in the specified pipeline are returned \(e.g., "1"\) |
5050
| `updated_since` | string | No | If set, only deals updated after this time are returned. Format: 2025-01-01T10:20:00Z |
5151
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
52+
| `cursor` | string | No | For pagination, the marker representing the first item on the next page |
5253

5354
#### Output
5455

@@ -74,6 +75,8 @@ Retrieve all deals from Pipedrive with optional filters
7475
| `metadata` | object | Pagination metadata for the response |
7576
|`total_items` | number | Total number of items |
7677
|`has_more` | boolean | Whether more items are available |
78+
|`next_cursor` | string | Cursor for fetching the next page \(v2 endpoints\) |
79+
|`next_start` | number | Offset for fetching the next page \(v1 endpoints\) |
7780
| `success` | boolean | Operation success status |
7881

7982
### `pipedrive_get_deal`
@@ -148,10 +151,9 @@ Retrieve files from Pipedrive with optional filters
148151

149152
| Parameter | Type | Required | Description |
150153
| --------- | ---- | -------- | ----------- |
151-
| `deal_id` | string | No | Filter files by deal ID \(e.g., "123"\) |
152-
| `person_id` | string | No | Filter files by person ID \(e.g., "456"\) |
153-
| `org_id` | string | No | Filter files by organization ID \(e.g., "789"\) |
154-
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
154+
| `sort` | string | No | Sort files by field \(supported: "id", "update_time"\) |
155+
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 100\) |
156+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
155157
| `downloadFiles` | boolean | No | Download file contents into file outputs |
156158

157159
#### Output
@@ -171,6 +173,8 @@ Retrieve files from Pipedrive with optional filters
171173
|`url` | string | File download URL |
172174
| `downloadedFiles` | file[] | Downloaded files from Pipedrive |
173175
| `total_items` | number | Total number of files returned |
176+
| `has_more` | boolean | Whether more files are available |
177+
| `next_start` | number | Offset for fetching the next page |
174178
| `success` | boolean | Operation success status |
175179

176180
### `pipedrive_get_mail_messages`
@@ -183,13 +187,16 @@ Retrieve mail threads from Pipedrive mailbox
183187
| --------- | ---- | -------- | ----------- |
184188
| `folder` | string | No | Filter by folder: inbox, drafts, sent, archive \(default: inbox\) |
185189
| `limit` | string | No | Number of results to return \(e.g., "25", default: 50\) |
190+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
186191

187192
#### Output
188193

189194
| Parameter | Type | Description |
190195
| --------- | ---- | ----------- |
191196
| `messages` | array | Array of mail thread objects from Pipedrive mailbox |
192197
| `total_items` | number | Total number of mail threads returned |
198+
| `has_more` | boolean | Whether more messages are available |
199+
| `next_start` | number | Offset for fetching the next page |
193200
| `success` | boolean | Operation success status |
194201

195202
### `pipedrive_get_mail_thread`
@@ -221,7 +228,7 @@ Retrieve all pipelines from Pipedrive
221228
| `sort_by` | string | No | Field to sort by: id, update_time, add_time \(default: id\) |
222229
| `sort_direction` | string | No | Sorting direction: asc, desc \(default: asc\) |
223230
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
224-
| `cursor` | string | No | For pagination, the marker representing the first item on the next page |
231+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
225232

226233
#### Output
227234

@@ -237,6 +244,8 @@ Retrieve all pipelines from Pipedrive
237244
|`add_time` | string | When the pipeline was created |
238245
|`update_time` | string | When the pipeline was last updated |
239246
| `total_items` | number | Total number of pipelines returned |
247+
| `has_more` | boolean | Whether more pipelines are available |
248+
| `next_start` | number | Offset for fetching the next page |
240249
| `success` | boolean | Operation success status |
241250

242251
### `pipedrive_get_pipeline_deals`
@@ -249,8 +258,8 @@ Retrieve all deals in a specific pipeline
249258
| --------- | ---- | -------- | ----------- |
250259
| `pipeline_id` | string | Yes | The ID of the pipeline \(e.g., "1"\) |
251260
| `stage_id` | string | No | Filter by specific stage within the pipeline \(e.g., "2"\) |
252-
| `status` | string | No | Filter by deal status: open, won, lost |
253261
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
262+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
254263

255264
#### Output
256265

@@ -271,6 +280,7 @@ Retrieve all projects or a specific project from Pipedrive
271280
| `project_id` | string | No | Optional: ID of a specific project to retrieve \(e.g., "123"\) |
272281
| `status` | string | No | Filter by project status: open, completed, deleted \(only for listing all\) |
273282
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500, only for listing all\) |
283+
| `cursor` | string | No | For pagination, the marker representing the first item on the next page |
274284

275285
#### Output
276286

@@ -279,6 +289,8 @@ Retrieve all projects or a specific project from Pipedrive
279289
| `projects` | array | Array of project objects \(when listing all\) |
280290
| `project` | object | Single project object \(when project_id is provided\) |
281291
| `total_items` | number | Total number of projects returned |
292+
| `has_more` | boolean | Whether more projects are available |
293+
| `next_cursor` | string | Cursor for fetching the next page |
282294
| `success` | boolean | Operation success status |
283295

284296
### `pipedrive_create_project`
@@ -309,12 +321,11 @@ Retrieve activities (tasks) from Pipedrive with optional filters
309321

310322
| Parameter | Type | Required | Description |
311323
| --------- | ---- | -------- | ----------- |
312-
| `deal_id` | string | No | Filter activities by deal ID \(e.g., "123"\) |
313-
| `person_id` | string | No | Filter activities by person ID \(e.g., "456"\) |
314-
| `org_id` | string | No | Filter activities by organization ID \(e.g., "789"\) |
324+
| `user_id` | string | No | Filter activities by user ID \(e.g., "123"\) |
315325
| `type` | string | No | Filter by activity type \(call, meeting, task, deadline, email, lunch\) |
316326
| `done` | string | No | Filter by completion status: 0 for not done, 1 for done |
317327
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
328+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
318329

319330
#### Output
320331

@@ -335,6 +346,8 @@ Retrieve activities (tasks) from Pipedrive with optional filters
335346
|`add_time` | string | When the activity was created |
336347
|`update_time` | string | When the activity was last updated |
337348
| `total_items` | number | Total number of activities returned |
349+
| `has_more` | boolean | Whether more activities are available |
350+
| `next_start` | number | Offset for fetching the next page |
338351
| `success` | boolean | Operation success status |
339352

340353
### `pipedrive_create_activity`
@@ -399,6 +412,7 @@ Retrieve all leads or a specific lead from Pipedrive
399412
| `person_id` | string | No | Filter by person ID \(e.g., "456"\) |
400413
| `organization_id` | string | No | Filter by organization ID \(e.g., "789"\) |
401414
| `limit` | string | No | Number of results to return \(e.g., "50", default: 100, max: 500\) |
415+
| `start` | string | No | Pagination start offset \(0-based index of the first item to return\) |
402416

403417
#### Output
404418

@@ -433,6 +447,8 @@ Retrieve all leads or a specific lead from Pipedrive
433447
|`add_time` | string | When the lead was created \(ISO 8601\) |
434448
|`update_time` | string | When the lead was last updated \(ISO 8601\) |
435449
| `total_items` | number | Total number of leads returned |
450+
| `has_more` | boolean | Whether more leads are available |
451+
| `next_start` | number | Offset for fetching the next page |
436452
| `success` | boolean | Operation success status |
437453

438454
### `pipedrive_create_lead`

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Query data from a Supabase table
5757
| `filter` | string | No | PostgREST filter \(e.g., "id=eq.123"\) |
5858
| `orderBy` | string | No | Column to order by \(add DESC for descending\) |
5959
| `limit` | number | No | Maximum number of rows to return |
60+
| `offset` | number | No | Number of rows to skip \(for pagination\) |
6061
| `apiKey` | string | Yes | Your Supabase service role secret key |
6162

6263
#### Output
@@ -211,6 +212,7 @@ Perform full-text search on a Supabase table
211212
| `searchType` | string | No | Search type: plain, phrase, or websearch \(default: websearch\) |
212213
| `language` | string | No | Language for text search configuration \(default: english\) |
213214
| `limit` | number | No | Maximum number of rows to return |
215+
| `offset` | number | No | Number of rows to skip \(for pagination\) |
214216
| `apiKey` | string | Yes | Your Supabase service role secret key |
215217

216218
#### Output

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ Retrieve form responses from Typeform
4343
| `formId` | string | Yes | Typeform form ID \(e.g., "abc123XYZ"\) |
4444
| `apiKey` | string | Yes | Typeform Personal Access Token |
4545
| `pageSize` | number | No | Number of responses to retrieve \(e.g., 10, 25, 50\) |
46+
| `before` | string | No | Cursor token for fetching the next page of older responses |
47+
| `after` | string | No | Cursor token for fetching the next page of newer responses |
4648
| `since` | string | No | Retrieve responses submitted after this date \(e.g., "2024-01-01T00:00:00Z"\) |
4749
| `until` | string | No | Retrieve responses submitted before this date \(e.g., "2024-12-31T23:59:59Z"\) |
4850
| `completed` | string | No | Filter by completion status \(e.g., "true", "false", "all"\) |

0 commit comments

Comments
 (0)