docusaurus-plugin-openapi-docs 1.1.0 → 1.1.1
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/README.md +1 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -121,7 +121,6 @@ The `docusaurus-plugin-openapi-docs` plugin can be configured with the following
|
|
|
121
121
|
| ---------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------- |
|
|
122
122
|
| `specPath` | `string` | `null` | Designated URL or path to the source of an OpenAPI specification file or directory of multiple OpenAPI specification files. |
|
|
123
123
|
| `ouputDir` | `string` | `null` | Desired output path for generated MDX files. |
|
|
124
|
-
| `ouputDir` | `string` | `null` | Desired output path for generated MDX files. |
|
|
125
124
|
| `template` | `string` | `null` | _Optional:_ Customize MDX content with a desired template. |
|
|
126
125
|
| `sidebarOptions` | `object` | `null` | _Optional:_ Set of options for sidebar configuration. See below for a list of supported options. |
|
|
127
126
|
| `version` | `string` | `null` | _Optional:_ Version assigned to single or micro-spec API specified in `specPath`. |
|
|
@@ -247,7 +246,7 @@ yarn docusaurus gen-api-docs:version petstore:all
|
|
|
247
246
|
Run the following to bootstrap a Docsaurus v2 site (classic theme) with `docusaurus-openapi-docs`:
|
|
248
247
|
|
|
249
248
|
```bash
|
|
250
|
-
npx create-docusaurus@2.0.0-
|
|
249
|
+
npx create-docusaurus@2.0.0-rc.1 my-website --package-manager yarn
|
|
251
250
|
```
|
|
252
251
|
|
|
253
252
|
> When prompted to select a template choose `Git repository`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docusaurus-plugin-openapi-docs",
|
|
3
3
|
"description": "OpenAPI plugin for Docusaurus.",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"openapi",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"watch": "tsc --watch"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@docusaurus/module-type-aliases": "2.0.0-
|
|
32
|
-
"@docusaurus/types": "2.0.0-
|
|
31
|
+
"@docusaurus/module-type-aliases": "2.0.0-rc.1",
|
|
32
|
+
"@docusaurus/types": "2.0.0-rc.1",
|
|
33
33
|
"@types/fs-extra": "^9.0.13",
|
|
34
34
|
"@types/js-yaml": "^4.0.5",
|
|
35
35
|
"@types/json-pointer": "^1.0.31",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@apidevtools/json-schema-ref-parser": "^9.0.9",
|
|
43
|
-
"@docusaurus/mdx-loader": "2.0.0-
|
|
44
|
-
"@docusaurus/plugin-content-docs": "2.0.0-
|
|
45
|
-
"@docusaurus/utils": "2.0.0-
|
|
46
|
-
"@docusaurus/utils-validation": "2.0.0-
|
|
43
|
+
"@docusaurus/mdx-loader": "2.0.0-rc.1",
|
|
44
|
+
"@docusaurus/plugin-content-docs": "2.0.0-rc.1",
|
|
45
|
+
"@docusaurus/utils": "2.0.0-rc.1",
|
|
46
|
+
"@docusaurus/utils-validation": "2.0.0-rc.1",
|
|
47
47
|
"@paloaltonetworks/openapi-to-postmanv2": "3.1.0-hotfix.1",
|
|
48
48
|
"@paloaltonetworks/postman-collection": "^4.1.0",
|
|
49
49
|
"@redocly/openapi-core": "^1.0.0-beta.103",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"engines": {
|
|
68
68
|
"node": ">=14"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "3eb4608e07c5e4f01328fea4e488e9e0f90134a8"
|
|
71
71
|
}
|