@scalar/api-reference 1.43.17 → 1.44.1

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/dist/browser/standalone.js +17383 -15649
  3. package/dist/browser/webpack-stats.json +1 -1
  4. package/dist/components/AgentChat.vue.d.ts +9 -0
  5. package/dist/components/AgentChat.vue.d.ts.map +1 -0
  6. package/dist/components/AgentChat.vue.js +4 -0
  7. package/dist/components/AgentChat.vue2.js +26 -0
  8. package/dist/components/ApiReference.vue.d.ts +1 -0
  9. package/dist/components/ApiReference.vue.d.ts.map +1 -1
  10. package/dist/components/ApiReference.vue.js +1 -1
  11. package/dist/components/ApiReference.vue2.js +83 -26
  12. package/dist/components/LinkList/LinkList.vue.js +1 -1
  13. package/dist/components/LinkList/LinkList.vue2.js +1 -1
  14. package/dist/components/MobileHeader.vue.d.ts.map +1 -1
  15. package/dist/components/MobileHeader.vue.js +6 -4
  16. package/dist/consts/urls.d.ts +7 -11
  17. package/dist/consts/urls.d.ts.map +1 -1
  18. package/dist/consts/urls.js +9 -3
  19. package/dist/features/Operation/components/ContentTypeSelect.vue.d.ts.map +1 -1
  20. package/dist/features/Operation/components/ContentTypeSelect.vue.js +14 -12
  21. package/dist/features/Operation/components/ParameterListItem.vue.d.ts.map +1 -1
  22. package/dist/features/Operation/components/ParameterListItem.vue.js +1 -1
  23. package/dist/features/Operation/components/ParameterListItem.vue2.js +4 -4
  24. package/dist/features/example-responses/ExampleResponses.vue.d.ts.map +1 -1
  25. package/dist/features/example-responses/ExampleResponses.vue.js +1 -1
  26. package/dist/features/example-responses/ExampleResponses.vue2.js +7 -12
  27. package/dist/features/multiple-documents/DocumentSelector.vue.d.ts.map +1 -1
  28. package/dist/features/multiple-documents/DocumentSelector.vue.js +11 -8
  29. package/dist/features/toolbar/ApiReferenceToolbar.vue.d.ts.map +1 -1
  30. package/dist/features/toolbar/ApiReferenceToolbar.vue.js +1 -1
  31. package/dist/features/toolbar/ApiReferenceToolbarPopover.vue.js +1 -1
  32. package/dist/features/toolbar/ApiReferenceToolbarTitle.vue.d.ts.map +1 -1
  33. package/dist/features/toolbar/ApiReferenceToolbarTitle.vue.js +3 -3
  34. package/dist/helpers/normalize-configurations.d.ts +2 -1
  35. package/dist/helpers/normalize-configurations.d.ts.map +1 -1
  36. package/dist/helpers/normalize-configurations.js +1 -0
  37. package/dist/style.css +383 -163
  38. package/package.json +17 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,65 @@
1
1
  # @scalar/api-reference
2
2
 
3
+ ## 1.44.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7961](https://github.com/scalar/scalar/pull/7961): fix(agent): make agent ui responsive
8
+ - [#7967](https://github.com/scalar/scalar/pull/7967): fix(agent): remove ui jump on uploading document
9
+
10
+ #### Updated Dependencies
11
+
12
+ - **@scalar/agent-chat@0.4.1**
13
+ - [#7960](https://github.com/scalar/scalar/pull/7960): fix: update agent pricing per message
14
+ - [#7966](https://github.com/scalar/scalar/pull/7966): feat(agent): add remaining message information
15
+ - [#7961](https://github.com/scalar/scalar/pull/7961): fix(agent): make agent ui responsive
16
+ - [#7967](https://github.com/scalar/scalar/pull/7967): fix(agent): remove ui jump on uploading document
17
+
18
+ - **@scalar/api-client@2.22.1**
19
+ - [#7965](https://github.com/scalar/scalar/pull/7965): Adds exports for creating external actions
20
+
21
+ ## 1.44.0
22
+
23
+ ### Minor Changes
24
+
25
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
26
+
27
+ ### Patch Changes
28
+
29
+ - [#7932](https://github.com/scalar/scalar/pull/7932): feat: use getExample in the references responses
30
+ - [#7931](https://github.com/scalar/scalar/pull/7931): fix(api-reference): account for custom header and sidebar
31
+
32
+ #### Updated Dependencies
33
+
34
+ - **@scalar/agent-chat@0.4.0**
35
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
36
+
37
+ - **@scalar/api-client@2.22.0**
38
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
39
+ - [#7929](https://github.com/scalar/scalar/pull/7929): fix: revert changes to the document when closing the modal
40
+ - [#7932](https://github.com/scalar/scalar/pull/7932): feat: use getExample in the references responses
41
+
42
+ - **@scalar/components@0.17.0**
43
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
44
+
45
+ - **@scalar/themes@0.14.0**
46
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
47
+
48
+ - **@scalar/types@0.6.0**
49
+ - [#7959](https://github.com/scalar/scalar/pull/7959): feat(agent): add agent scalar to localhost
50
+
51
+ - **@scalar/sidebar@0.7.23**
52
+
53
+ - **@scalar/code-highlight@0.2.2**
54
+
55
+ - **@scalar/oas-utils@0.6.30**
56
+
57
+ - **@scalar/workspace-store@0.27.2**
58
+
59
+ - **@scalar/openapi-parser@0.24.5**
60
+
61
+ - **@scalar/snippetz@0.6.9**
62
+
3
63
  ## 1.43.17
4
64
 
5
65
  ### Patch Changes