@scalar/api-reference 1.46.2 → 1.46.4
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 +43 -0
- package/dist/browser/standalone.js +3034 -3013
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaComposition.vue.js +1 -1
- package/dist/components/Content/Schema/helpers/schema-name.js +6 -6
- package/dist/features/example-responses/ExampleResponses.vue.d.ts.map +1 -1
- package/dist/features/example-responses/ExampleResponses.vue.js +1 -1
- package/dist/features/example-responses/ExampleResponses.vue2.js +6 -14
- package/dist/features/example-responses/ExampleSchema.vue.d.ts +3 -1
- package/dist/features/example-responses/ExampleSchema.vue.d.ts.map +1 -1
- package/dist/features/example-responses/ExampleSchema.vue.js +12 -4
- package/dist/features/example-responses/has-response-content.d.ts +1 -1
- package/dist/features/example-responses/has-response-content.d.ts.map +1 -1
- package/dist/features/example-responses/has-response-content.js +10 -1
- package/dist/helpers/openapi.d.ts.map +1 -1
- package/dist/helpers/openapi.js +36 -19
- package/dist/style.css +23 -23
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.46.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#8330](https://github.com/scalar/scalar/pull/8330): fix: use ref name only as a fallback
|
|
8
|
+
|
|
9
|
+
## 1.46.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#8298](https://github.com/scalar/scalar/pull/8298): feat(api-reference): show explicit no-content response tabs for defined response keys
|
|
14
|
+
- [#8313](https://github.com/scalar/scalar/pull/8313): chore: resolve schemas on demand
|
|
15
|
+
|
|
16
|
+
#### Updated Dependencies
|
|
17
|
+
|
|
18
|
+
- **@scalar/openapi-types@0.5.4**
|
|
19
|
+
- [#8275](https://github.com/scalar/scalar/pull/8275): fix(openapi-types): make the `$ref` property in the `ReferenceObject` type required
|
|
20
|
+
|
|
21
|
+
- **@scalar/components@0.19.15**
|
|
22
|
+
- [#8319](https://github.com/scalar/scalar/pull/8319): fix(components): fix adjust sidebar section line height
|
|
23
|
+
|
|
24
|
+
- **@scalar/oas-utils@0.8.3**
|
|
25
|
+
- [#8314](https://github.com/scalar/scalar/pull/8314): chore: limit concurrent operations while migrating workspaces
|
|
26
|
+
|
|
27
|
+
- **@scalar/helpers@0.2.18**
|
|
28
|
+
- [#8314](https://github.com/scalar/scalar/pull/8314): chore: limit concurrent operations while migrating workspaces
|
|
29
|
+
|
|
30
|
+
- **@scalar/api-client@2.31.3**
|
|
31
|
+
- [#8313](https://github.com/scalar/scalar/pull/8313): fix: correctly cache schema examples
|
|
32
|
+
- [#8254](https://github.com/scalar/scalar/pull/8254): fix: resolve OAuth2 URLs against interpolated server URL
|
|
33
|
+
|
|
34
|
+
- **@scalar/agent-chat@0.7.3**
|
|
35
|
+
|
|
36
|
+
- **@scalar/openapi-parser@0.24.17**
|
|
37
|
+
|
|
38
|
+
- **@scalar/sidebar@0.7.46**
|
|
39
|
+
|
|
40
|
+
- **@scalar/workspace-store@0.35.3**
|
|
41
|
+
|
|
42
|
+
- **@scalar/types@0.6.10**
|
|
43
|
+
|
|
44
|
+
- **@scalar/snippetz@0.6.19**
|
|
45
|
+
|
|
3
46
|
## 1.46.2
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|