docusaurus-plugin-openapi-docs 0.0.0-516 → 0.0.0-518

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/lib/types.d.ts CHANGED
@@ -72,6 +72,7 @@ export interface ApiItem extends OperationObject {
72
72
  [key: string]: SecuritySchemeObject;
73
73
  };
74
74
  postman?: Request;
75
+ proxy?: string;
75
76
  info: InfoObject;
76
77
  }
77
78
  export interface InfoPageMetadata extends ApiMetadataBase {
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-516",
4
+ "version": "0.0.0-518",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -68,5 +68,5 @@
68
68
  "engines": {
69
69
  "node": ">=14"
70
70
  },
71
- "gitHead": "aeee27c71192eff979759be8ba32e6ea23b751c5"
71
+ "gitHead": "e159d075120e8ce0f2bc5d60411a7b16f30a14b7"
72
72
  }
package/src/types.ts CHANGED
@@ -99,6 +99,7 @@ export interface ApiItem extends OperationObject {
99
99
  [key: string]: SecuritySchemeObject;
100
100
  };
101
101
  postman?: Request;
102
+ proxy?: string;
102
103
  info: InfoObject;
103
104
  }
104
105