Add copy cURL command to API endpoint detail popup
Details
Every endpoint detail popup now shows a ready-to-paste cURL command
at the top with method, auth header, content-type, and JSON body.
All routes are now clickable (not just ones with schema docs) since
every route gets a cURL block.
Add API endpoint detail popup with request/response schemas
Details
Extend ApiRouteDescriptor in SDK with RequestExample, ResponseExample,
and QueryParamDocs fields. API docs window routes are now clickable —
clicking an endpoint opens a detail popup showing query parameters,
request body shape, and response body shape with copy-to-clipboard
buttons for each code block.
Fix horizontal overflow in API docs window
Details
- Reduce method column from 90px to 50px (GET/POST/PATCH/DELETE fit)
- Add TextWrapping=Wrap to all route path/description TextBlocks
- Add TextWrapping to the curl status check code block (was the only
code block missing it)
Long endpoint paths and descriptions now wrap instead of overflowing
the modal width.
Center search bar on full toolbar width, not leftover space
Details
The search pill was placed in Grid Column 1 (*) between the title
(Auto) and actions (Auto). Since different plugins have different
title/action widths, the * column's center shifted per plugin.
Fix: span the search pill across all 3 columns (ColumnSpan=3) with
HorizontalAlignment.Center so it centers on the full toolbar width.
Title and actions render on top in their Auto columns. The search bar
now stays dead-center across all plugins.
Center search pill in PluginToolbar using proper column definitions
Details
The toolbar row used a Grid with no column definitions, causing all children
to overlap in a single cell. Title (Left), search (Center), and actions
(Right) relied on HorizontalAlignment alone, which centers the search pill
relative to the full grid width rather than the space between title and
actions. Switch to ColumnDefinitions="Auto,*,Auto" so the search pill
centers within the remaining space between title and actions.
Get notified about new releases