@scalar/api-reference 0.6.18 → 0.6.20
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 +18 -0
- package/README.md +5 -1
- package/dist/browser/standalone.js +711 -881
- package/dist/components/Card/CardContent.vue.d.ts.map +1 -1
- package/dist/components/Content/MarkdownRenderer.vue.d.ts.map +1 -1
- package/dist/components/Content/ReferenceEndpoint/ExampleResponses/ExampleResponses.vue.d.ts.map +1 -1
- package/dist/index.js +5363 -5499
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 0.6.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 37353dd1: feat: add `data-proxy-url` to the HTML API
|
|
8
|
+
- Updated dependencies [a7f776ba]
|
|
9
|
+
- @scalar/swagger-editor@0.6.18
|
|
10
|
+
|
|
11
|
+
## 0.6.19
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- eb0c3201: Lot's of small things + bigger temp fix for the multi content cards
|
|
16
|
+
- Updated dependencies [eb0c3201]
|
|
17
|
+
- @scalar/swagger-editor@0.6.17
|
|
18
|
+
- @scalar/api-client@0.7.14
|
|
19
|
+
- @scalar/themes@0.3.9
|
|
20
|
+
|
|
3
21
|
## 0.6.18
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -67,7 +67,11 @@ Making requests to other domains is restricted in the browser and requires [CORS
|
|
|
67
67
|
<ApiReference proxyUrl="https://proxy.example.com" />
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
ℹ️ You can use [@scalar/api-client-proxy](https://github.com/scalar/scalar/tree/main/packages/api-client-proxy) to host your own proxy
|
|
70
|
+
ℹ️ You can use [@scalar/api-client-proxy](https://github.com/scalar/scalar/tree/main/packages/api-client-proxy) to host your own proxy or you can just use ours:
|
|
71
|
+
|
|
72
|
+
```vue
|
|
73
|
+
<ApiReference proxyUrl="https://api.scalar.com/request-proxy" />
|
|
74
|
+
```
|
|
71
75
|
|
|
72
76
|
#### initialTabState?: string
|
|
73
77
|
|