@scalar/api-reference 1.39.0 → 1.39.2
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 +32 -0
- package/README.md +1 -1
- package/dist/browser/standalone.js +4677 -4655
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/ApiReference.vue.d.ts +256 -1
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/ApiReference.vue.js +1 -1
- package/dist/components/ApiReference.vue2.js +14 -18
- package/dist/components/GettingStarted.vue.js +1 -1
- package/dist/components/GettingStarted.vue2.js +4 -4
- package/dist/style.css +347 -203
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.39.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#7241](https://github.com/scalar/scalar/pull/7241) [`2377b76`](https://github.com/scalar/scalar/commit/2377b76d050f8de70037b17a32d0dd1181d3311d) Thanks [@hanspagel](https://github.com/hanspagel)! - chore: use "current" not "latest" scalar registry url
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`c1ecd0c`](https://github.com/scalar/scalar/commit/c1ecd0c6096f3fbe2e3d8ad3794ea718bb6bce66), [`fddf294`](https://github.com/scalar/scalar/commit/fddf294b00dd8c9eb5c713c338f2ec6e3f62523d), [`d6154a2`](https://github.com/scalar/scalar/commit/d6154a24d97fc28977def486f99b2eeee52d268c), [`c1ecd0c`](https://github.com/scalar/scalar/commit/c1ecd0c6096f3fbe2e3d8ad3794ea718bb6bce66), [`c1ecd0c`](https://github.com/scalar/scalar/commit/c1ecd0c6096f3fbe2e3d8ad3794ea718bb6bce66), [`2377b76`](https://github.com/scalar/scalar/commit/2377b76d050f8de70037b17a32d0dd1181d3311d)]:
|
|
10
|
+
- @scalar/json-magic@0.8.0
|
|
11
|
+
- @scalar/workspace-store@0.19.0
|
|
12
|
+
- @scalar/api-client@2.10.0
|
|
13
|
+
- @scalar/helpers@0.1.0
|
|
14
|
+
- @scalar/openapi-parser@0.23.1
|
|
15
|
+
- @scalar/oas-utils@0.6.2
|
|
16
|
+
- @scalar/sidebar@0.2.2
|
|
17
|
+
- @scalar/components@0.16.2
|
|
18
|
+
- @scalar/object-utils@1.2.10
|
|
19
|
+
|
|
20
|
+
## 1.39.1
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- [#7262](https://github.com/scalar/scalar/pull/7262) [`1d987e9`](https://github.com/scalar/scalar/commit/1d987e9977b145b2657bc5f8d6a67d2add958826) Thanks [@amritk](https://github.com/amritk)! - fix: do not set proxy by default
|
|
25
|
+
|
|
26
|
+
- [#7253](https://github.com/scalar/scalar/pull/7253) [`eb96d5c`](https://github.com/scalar/scalar/commit/eb96d5c1dfabde0681552ffc6ab77952c47775bb) Thanks [@hwkr](https://github.com/hwkr)! - fix(api-reference): upgrade document for client store
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [[`bffef40`](https://github.com/scalar/scalar/commit/bffef4092e40d12052f8538267af71bc99b7172f)]:
|
|
29
|
+
- @scalar/workspace-store@0.18.1
|
|
30
|
+
- @scalar/api-client@2.9.1
|
|
31
|
+
- @scalar/oas-utils@0.6.1
|
|
32
|
+
- @scalar/sidebar@0.2.1
|
|
33
|
+
- @scalar/components@0.16.1
|
|
34
|
+
|
|
3
35
|
## 1.39.0
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ Interactive API Reference from OpenAPI/Swagger Documents [Try our Demo](https://
|
|
|
33
33
|
<script>
|
|
34
34
|
Scalar.createApiReference('#app', {
|
|
35
35
|
// The URL of the OpenAPI/Swagger document
|
|
36
|
-
url: 'https://registry.scalar.com/@scalar/apis/galaxy
|
|
36
|
+
url: 'https://registry.scalar.com/@scalar/apis/galaxy?format=json',
|
|
37
37
|
// Avoid CORS issues
|
|
38
38
|
proxyUrl: 'https://proxy.scalar.com',
|
|
39
39
|
})
|