Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
*.wasm filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
packages/docs-md/src/generator/docsData/lib.wasm.gz filter=lfs diff=lfs merge=lfs -text
Comment on lines 1 to -3
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line 3 was redundant given the first two lines, and annoying to update.

4 changes: 2 additions & 2 deletions packages/docs-md/src/generator/docsData/lib.wasm.gz
Git LFS file not shown
10 changes: 10 additions & 0 deletions packages/docs-md/src/generator/mdx/chunks/operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ export function renderOperation({
if (parameter.description) {
renderer.appendParagraph(parameter.description);
}
const parameterChunk = getSchemaFromId(parameter.fieldChunkId, docsData);
renderSchema({
topLevelName: "Security",
site,
renderer,
schema: parameterChunk.chunkData.value,
data: docsData,
baseHeadingLevel: baseHeadingLevel + 2,
depth: 0,
});
}
}

Expand Down