@scalar/api-reference 1.43.17 → 1.44.0
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 +42 -0
- package/dist/browser/standalone.js +17370 -15649
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/AgentChat.vue.d.ts +9 -0
- package/dist/components/AgentChat.vue.d.ts.map +1 -0
- package/dist/components/AgentChat.vue.js +4 -0
- package/dist/components/AgentChat.vue2.js +26 -0
- package/dist/components/ApiReference.vue.d.ts +1 -0
- package/dist/components/ApiReference.vue.d.ts.map +1 -1
- package/dist/components/ApiReference.vue.js +1 -1
- package/dist/components/ApiReference.vue2.js +83 -26
- package/dist/components/LinkList/LinkList.vue.js +1 -1
- package/dist/components/LinkList/LinkList.vue2.js +1 -1
- package/dist/components/MobileHeader.vue.d.ts.map +1 -1
- package/dist/components/MobileHeader.vue.js +6 -4
- package/dist/consts/urls.d.ts +7 -11
- package/dist/consts/urls.d.ts.map +1 -1
- package/dist/consts/urls.js +9 -3
- package/dist/features/Operation/components/ContentTypeSelect.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/ContentTypeSelect.vue.js +14 -12
- package/dist/features/Operation/components/ParameterListItem.vue.d.ts.map +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue.js +1 -1
- package/dist/features/Operation/components/ParameterListItem.vue2.js +4 -4
- 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 +7 -12
- package/dist/features/multiple-documents/DocumentSelector.vue.d.ts.map +1 -1
- package/dist/features/multiple-documents/DocumentSelector.vue.js +11 -8
- package/dist/features/toolbar/ApiReferenceToolbar.vue.d.ts.map +1 -1
- package/dist/features/toolbar/ApiReferenceToolbar.vue.js +1 -1
- package/dist/features/toolbar/ApiReferenceToolbarPopover.vue.js +1 -1
- package/dist/features/toolbar/ApiReferenceToolbarTitle.vue.d.ts.map +1 -1
- package/dist/features/toolbar/ApiReferenceToolbarTitle.vue.js +3 -3
- package/dist/helpers/normalize-configurations.d.ts +2 -1
- package/dist/helpers/normalize-configurations.d.ts.map +1 -1
- package/dist/helpers/normalize-configurations.js +1 -0
- package/dist/style.css +366 -163
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.44.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#7932](https://github.com/scalar/scalar/pull/7932): feat: use getExample in the references responses
|
|
12
|
+
- [#7931](https://github.com/scalar/scalar/pull/7931): fix(api-reference): account for custom header and sidebar
|
|
13
|
+
|
|
14
|
+
#### Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- **@scalar/agent-chat@0.4.0**
|
|
17
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
18
|
+
|
|
19
|
+
- **@scalar/api-client@2.22.0**
|
|
20
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
21
|
+
- [#7929](https://github.com/scalar/scalar/pull/7929): fix: revert changes to the document when closing the modal
|
|
22
|
+
- [#7932](https://github.com/scalar/scalar/pull/7932): feat: use getExample in the references responses
|
|
23
|
+
|
|
24
|
+
- **@scalar/components@0.17.0**
|
|
25
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
26
|
+
|
|
27
|
+
- **@scalar/themes@0.14.0**
|
|
28
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
29
|
+
|
|
30
|
+
- **@scalar/types@0.6.0**
|
|
31
|
+
- [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
|
|
32
|
+
|
|
33
|
+
- **@scalar/sidebar@0.7.23**
|
|
34
|
+
|
|
35
|
+
- **@scalar/code-highlight@0.2.2**
|
|
36
|
+
|
|
37
|
+
- **@scalar/oas-utils@0.6.30**
|
|
38
|
+
|
|
39
|
+
- **@scalar/workspace-store@0.27.2**
|
|
40
|
+
|
|
41
|
+
- **@scalar/openapi-parser@0.24.5**
|
|
42
|
+
|
|
43
|
+
- **@scalar/snippetz@0.6.9**
|
|
44
|
+
|
|
3
45
|
## 1.43.17
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|