docusaurus-plugin-openapi-docs 0.0.0-349 → 0.0.0-350

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.
@@ -305,6 +305,8 @@ export interface HttpSecuritySchemeObject {
305
305
  description?: string;
306
306
  scheme: string;
307
307
  bearerFormat?: string;
308
+ name?: string;
309
+ in?: string;
308
310
  }
309
311
  export interface Oauth2SecuritySchemeObject {
310
312
  type: "oauth2";
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": "0.0.0-349",
4
+ "version": "0.0.0-350",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -28,18 +28,18 @@
28
28
  "watch": "tsc --watch"
29
29
  },
30
30
  "devDependencies": {
31
- "@docusaurus/module-type-aliases": "2.0.0-beta.20",
32
- "@docusaurus/types": "2.0.0-beta.20",
31
+ "@docusaurus/module-type-aliases": "2.0.0-beta.18",
32
+ "@docusaurus/types": "2.0.0-beta.18",
33
33
  "@types/fs-extra": "^9.0.13",
34
34
  "@types/json-schema": "^7.0.9",
35
35
  "@types/lodash": "^4.14.176",
36
36
  "utility-types": "^3.10.0"
37
37
  },
38
38
  "dependencies": {
39
- "@docusaurus/mdx-loader": "2.0.0-beta.20",
40
- "@docusaurus/plugin-content-docs": "2.0.0-beta.20",
41
- "@docusaurus/utils": "2.0.0-beta.20",
42
- "@docusaurus/utils-validation": "2.0.0-beta.20",
39
+ "@docusaurus/mdx-loader": "2.0.0-beta.18",
40
+ "@docusaurus/plugin-content-docs": "2.0.0-beta.18",
41
+ "@docusaurus/utils": "2.0.0-beta.18",
42
+ "@docusaurus/utils-validation": "2.0.0-beta.18",
43
43
  "@paloaltonetworks/openapi-to-postmanv2": "3.1.0-hotfix.1",
44
44
  "@paloaltonetworks/postman-collection": "^4.1.0",
45
45
  "@types/js-yaml": "^4.0.5",
@@ -60,5 +60,5 @@
60
60
  "engines": {
61
61
  "node": ">=14"
62
62
  },
63
- "gitHead": "0fafe223e6bbb9e5b67128c30a0a3ef84af0d074"
63
+ "gitHead": "c66039acf120aeef0024c18d5ca0d842f38b32a6"
64
64
  }
@@ -400,6 +400,8 @@ export interface HttpSecuritySchemeObject {
400
400
  description?: string;
401
401
  scheme: string;
402
402
  bearerFormat?: string;
403
+ name?: string;
404
+ in?: string;
403
405
  }
404
406
 
405
407
  export interface Oauth2SecuritySchemeObject {