docusaurus-plugin-openapi-docs 0.0.0-beta.747 → 0.0.0-beta.748

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
@@ -221,7 +221,7 @@ custom_edit_url: null
221
221
  };
222
222
  loadedApi.map(async (item) => {
223
223
  if (item.type === "info") {
224
- if (downloadUrl && isURL(downloadUrl)) {
224
+ if (downloadUrl) {
225
225
  item.downloadUrl = downloadUrl;
226
226
  }
227
227
  }
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-beta.747",
4
+ "version": "0.0.0-beta.748",
5
5
  "license": "MIT",
6
6
  "keywords": [
7
7
  "openapi",
@@ -62,5 +62,5 @@
62
62
  "engines": {
63
63
  "node": ">=14"
64
64
  },
65
- "gitHead": "d7b4eb11a240f89e3fba6ed678ae437caab26d1d"
65
+ "gitHead": "43afeb58dbe0b59f394e448d307ee5823afc9b72"
66
66
  }
package/src/index.ts CHANGED
@@ -312,7 +312,7 @@ custom_edit_url: null
312
312
 
313
313
  loadedApi.map(async (item) => {
314
314
  if (item.type === "info") {
315
- if (downloadUrl && isURL(downloadUrl)) {
315
+ if (downloadUrl) {
316
316
  item.downloadUrl = downloadUrl;
317
317
  }
318
318
  }