docusaurus-plugin-openapi-docs 0.0.0-738 → 0.0.0-739

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/index.js CHANGED
@@ -218,7 +218,7 @@ custom_edit_url: null
218
218
  };
219
219
  loadedApi.map(async (item) => {
220
220
  if (item.type === "info") {
221
- if (downloadUrl && isURL(downloadUrl)) {
221
+ if (downloadUrl) {
222
222
  item.downloadUrl = downloadUrl;
223
223
  }
224
224
  }
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-738",
4
+ "version": "0.0.0-739",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -60,5 +60,5 @@
60
60
  "engines": {
61
61
  "node": ">=14"
62
62
  },
63
- "gitHead": "4c48921ed3b574960f207d9f5ce8f9de6feab169"
63
+ "gitHead": "0ccfcdc32a65d5f7e55bcf529fd908be7e136109"
64
64
  }
package/src/index.ts CHANGED
@@ -306,7 +306,7 @@ custom_edit_url: null
306
306
 
307
307
  loadedApi.map(async (item) => {
308
308
  if (item.type === "info") {
309
- if (downloadUrl && isURL(downloadUrl)) {
309
+ if (downloadUrl) {
310
310
  item.downloadUrl = downloadUrl;
311
311
  }
312
312
  }