@scalar/api-reference 1.17.15 → 1.17.16

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 1.17.16
4
+
5
+ ### Patch Changes
6
+
7
+ - f39516c: chore: remove preparsed content
8
+ - 8b2558a: fix: custom operation security scheme is ignored
9
+ - ad80db9: fix: content not reactive
10
+ - 2e9218f: fix: deprecated operations are not striked through in the sidebar
11
+
3
12
  ## 1.17.15
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -58,14 +58,6 @@ Pass the URL of a spec file (JSON or Yaml).
58
58
  <ApiReference :configuration="{ spec: { url: '/swagger.json' } }" />
59
59
  ```
60
60
 
61
- #### spec.preparsedContent?: string
62
-
63
- You can preprocess specs with `@scalar/swagger-parser` and directly pass the result.
64
-
65
- ```vue
66
- <ApiReference :configuration="{ spec: { preparsedContent : '{ … }' } } />
67
- ```
68
-
69
61
  #### proxyUrl?: string
70
62
 
71
63
  Making requests to other domains is restricted in the browser and requires [CORS headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS). It’s recommended to use a proxy to send requests to other origins.