docusaurus-plugin-openapi-docs 2.1.3 → 2.2.0

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/src/types.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  * ========================================================================== */
7
7
 
8
- import type Request from "@paloaltonetworks/postman-collection";
8
+ import type Request from "postman-collection";
9
9
 
10
10
  import {
11
11
  InfoObject,
@@ -23,6 +23,7 @@ export type {
23
23
  } from "@docusaurus/plugin-content-docs-types";
24
24
  export interface PluginOptions {
25
25
  id?: string;
26
+ docsPlugin?: string;
26
27
  docsPluginId: string;
27
28
  config: {
28
29
  [key: string]: APIOptions;
@@ -46,6 +47,7 @@ export interface APIOptions {
46
47
  proxy?: string;
47
48
  markdownGenerators?: MarkdownGenerator;
48
49
  showSchemas?: boolean;
50
+ disableCompression?: boolean;
49
51
  }
50
52
 
51
53
  export interface MarkdownGenerator {
@@ -68,6 +70,7 @@ export interface APIVersionOptions {
68
70
  outputDir: string;
69
71
  label: string;
70
72
  baseUrl: string;
73
+ downloadUrl?: string;
71
74
  }
72
75
 
73
76
  export interface LoadedContent {