@kubb/plugin-redoc 3.0.0-beta.3 → 3.0.0-beta.4
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/types.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4,7 +4,7 @@ import { PluginFactoryOptions, Output } from '@kubb/core';
|
|
|
4
4
|
type Options = {
|
|
5
5
|
output?: {
|
|
6
6
|
/**
|
|
7
|
-
* Output for the generated doc,
|
|
7
|
+
* Output for the generated doc, [https://redocly.com/](https://redocly.com/) is being used for the generation
|
|
8
8
|
* @default 'docs.html'
|
|
9
9
|
*/
|
|
10
10
|
path: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { PluginFactoryOptions, Output } from '@kubb/core';
|
|
|
4
4
|
type Options = {
|
|
5
5
|
output?: {
|
|
6
6
|
/**
|
|
7
|
-
* Output for the generated doc,
|
|
7
|
+
* Output for the generated doc, [https://redocly.com/](https://redocly.com/) is being used for the generation
|
|
8
8
|
* @default 'docs.html'
|
|
9
9
|
*/
|
|
10
10
|
path: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-redoc",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
4
4
|
"description": "Beautiful docs with Redoc",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -47,20 +47,20 @@
|
|
|
47
47
|
"react-dom": "^18.3.1",
|
|
48
48
|
"redoc": "^2.1.5",
|
|
49
49
|
"styled-components": "^6.1.13",
|
|
50
|
-
"@kubb/core": "3.0.0-beta.
|
|
51
|
-
"@kubb/oas": "3.0.0-beta.
|
|
52
|
-
"@kubb/plugin-oas": "3.0.0-beta.
|
|
50
|
+
"@kubb/core": "3.0.0-beta.4",
|
|
51
|
+
"@kubb/oas": "3.0.0-beta.4",
|
|
52
|
+
"@kubb/plugin-oas": "3.0.0-beta.4"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/react": "^18.3.11",
|
|
56
56
|
"@types/react-dom": "^18.3.0",
|
|
57
57
|
"tsup": "^8.3.0",
|
|
58
58
|
"typescript": "^5.6.2",
|
|
59
|
-
"@kubb/config-ts": "3.0.0-beta.
|
|
60
|
-
"@kubb/config-tsup": "3.0.0-beta.
|
|
59
|
+
"@kubb/config-ts": "3.0.0-beta.4",
|
|
60
|
+
"@kubb/config-tsup": "3.0.0-beta.4"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@kubb/react": "3.0.0-beta.
|
|
63
|
+
"@kubb/react": "3.0.0-beta.4"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
66
|
"node": ">=20"
|
package/src/types.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { Output, PluginFactoryOptions } from '@kubb/core'
|
|
|
3
3
|
export type Options = {
|
|
4
4
|
output?: {
|
|
5
5
|
/**
|
|
6
|
-
* Output for the generated doc,
|
|
6
|
+
* Output for the generated doc, [https://redocly.com/](https://redocly.com/) is being used for the generation
|
|
7
7
|
* @default 'docs.html'
|
|
8
8
|
*/
|
|
9
9
|
path: string
|