docs(build): update dependencies and use pnpm

This commit is contained in:
rzmk 2026-06-11 17:43:59 -04:00
parent aed973683f
commit 1947c2f5eb
141 changed files with 6255 additions and 1775 deletions

View file

@ -2,7 +2,10 @@
title: resource_view_show
full: true
_openapi:
preload:
- ./lib/openapi.yml
method: POST
webhook: false
toc: []
structuredData:
headings: []
@ -12,6 +15,14 @@ _openapi:
{/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */}
Return the metadata of a resource_view.
<APIPage document={"./lib/openapi.yml"} operations={[{"path":"resource_view_show","method":"post"}]} />
export default function Layout(props) {
const { APIPage, OpenAPIPage } = props.components ?? {};
// "APIPage" is the old name from v10, this allows both for backward compatibility
const Comp = OpenAPIPage ?? APIPage;
return (
<>
{props.children}
<Comp document="./lib/openapi.yml" operations={[{"path":"resource_view_show","method":"post"}]} showDescription />
</>
);
}