fumadocs-openapi 11.0.0 → 11.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui/create-client.d.ts +11 -0
- package/dist/ui/create-client.js +7 -0
- package/package.json +11 -10
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CreateOpenAPIPageOptions, OpenAPIPageProps, createOpenAPIPage } from "./index.js";
|
|
2
|
+
|
|
3
|
+
//#region src/ui/create-client.d.ts
|
|
4
|
+
/** @deprecated Use `CreateOpenAPIPageOptions` insteawd */
|
|
5
|
+
type CreateClientAPIPageOptions = CreateOpenAPIPageOptions;
|
|
6
|
+
/** @deprecated Use `OpenAPIPageProps` instead */
|
|
7
|
+
type ClientApiPageProps = OpenAPIPageProps;
|
|
8
|
+
/** @deprecated use `createOpenAPIPage()` from `fumadocs-openapi/ui` instead */
|
|
9
|
+
declare const createClientAPIPage: typeof createOpenAPIPage;
|
|
10
|
+
//#endregion
|
|
11
|
+
export { ClientApiPageProps, CreateClientAPIPageOptions, createClientAPIPage };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { createOpenAPIPage } from "./index.js";
|
|
3
|
+
//#region src/ui/create-client.tsx
|
|
4
|
+
/** @deprecated use `createOpenAPIPage()` from `fumadocs-openapi/ui` instead */
|
|
5
|
+
const createClientAPIPage = createOpenAPIPage;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { createClientAPIPage };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-openapi",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.2",
|
|
4
4
|
"description": "Generate MDX docs for your OpenAPI spec",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Docs",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"./server": "./dist/server/index.js",
|
|
32
32
|
"./ui": "./dist/ui/index.js",
|
|
33
33
|
"./ui/base": "./dist/ui/base.js",
|
|
34
|
+
"./ui/create-client": "./dist/ui/create-client.js",
|
|
34
35
|
"./package.json": "./package.json",
|
|
35
36
|
"./css/*": "./css/*"
|
|
36
37
|
},
|
|
@@ -38,7 +39,7 @@
|
|
|
38
39
|
"access": "public"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
|
-
"@fuma-translate/react": "^
|
|
42
|
+
"@fuma-translate/react": "^1.0.1",
|
|
42
43
|
"@fumari/json-schema-ts": "^0.0.2",
|
|
43
44
|
"chokidar": "^5.0.0",
|
|
44
45
|
"class-variance-authority": "^0.7.1",
|
|
@@ -50,23 +51,23 @@
|
|
|
50
51
|
"remark-rehype": "^11.1.2",
|
|
51
52
|
"shiki": "^4.2.0",
|
|
52
53
|
"tailwind-merge": "^3.6.0",
|
|
53
|
-
"@fumadocs/api-docs": "0.0.
|
|
54
|
+
"@fumadocs/api-docs": "0.0.2",
|
|
54
55
|
"@fumari/stf": "1.0.5"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@scalar/api-client-react": "^2.0.
|
|
58
|
+
"@scalar/api-client-react": "^2.0.24",
|
|
58
59
|
"@scalar/openapi-upgrader": "^0.2.9",
|
|
59
60
|
"@tailwindcss/oxide": "^4.3.0",
|
|
60
61
|
"@types/js-yaml": "^4.0.9",
|
|
61
|
-
"@types/node": "25.9.
|
|
62
|
-
"@types/react": "^19.2.
|
|
62
|
+
"@types/node": "25.9.2",
|
|
63
|
+
"@types/react": "^19.2.17",
|
|
63
64
|
"fast-content-type-parse": "^3.0.0",
|
|
64
65
|
"json-schema-typed": "^8.0.2",
|
|
65
|
-
"tsdown": "0.22.
|
|
66
|
+
"tsdown": "0.22.2",
|
|
66
67
|
"xml-js": "^1.6.11",
|
|
67
|
-
"
|
|
68
|
-
"fumadocs-
|
|
69
|
-
"
|
|
68
|
+
"tsconfig": "0.0.0",
|
|
69
|
+
"fumadocs-core": "16.10.1",
|
|
70
|
+
"fumadocs-ui": "16.10.1"
|
|
70
71
|
},
|
|
71
72
|
"peerDependencies": {
|
|
72
73
|
"@scalar/api-client-react": "^2.0.20",
|