@scalar/api-client 2.19.0 → 2.19.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.
Files changed (29) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/dist/style.css +1 -1
  3. package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.js +12 -12
  4. package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.d.ts.map +1 -1
  5. package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.js +44 -47
  6. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts +4 -22
  7. package/dist/v2/blocks/request-block/components/RequestParams.vue.d.ts.map +1 -1
  8. package/dist/v2/blocks/request-block/components/RequestParams.vue.js +30 -28
  9. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts +10 -20
  10. package/dist/v2/blocks/request-block/components/RequestTable.vue.d.ts.map +1 -1
  11. package/dist/v2/blocks/request-block/components/RequestTable.vue.js +2 -2
  12. package/dist/v2/blocks/request-block/components/RequestTable.vue2.js +31 -40
  13. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts +4 -12
  14. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.d.ts.map +1 -1
  15. package/dist/v2/blocks/request-block/helpers/create-parameter-handlers.js +27 -44
  16. package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
  17. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts +0 -2
  18. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.d.ts.map +1 -1
  19. package/dist/v2/blocks/scalar-auth-selector-block/components/AuthSelector.vue.js +19 -20
  20. package/dist/v2/blocks/scalar-auth-selector-block/helpers/security-scheme.d.ts +25 -14
  21. package/dist/v2/blocks/scalar-auth-selector-block/helpers/security-scheme.d.ts.map +1 -1
  22. package/dist/v2/blocks/scalar-auth-selector-block/helpers/security-scheme.js +65 -45
  23. package/dist/v2/features/app/app-events.d.ts.map +1 -1
  24. package/dist/v2/features/app/app-events.js +24 -27
  25. package/dist/v2/features/operation/Operation.vue.js +1 -1
  26. package/dist/v2/workspace-events.d.ts.map +1 -1
  27. package/dist/v2/workspace-events.js +7 -10
  28. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  29. package/package.json +17 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # @scalar/api-client
2
2
 
3
+ ## 2.19.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7848](https://github.com/scalar/scalar/pull/7848): fix: allow multiple security requirements with different scopes
8
+ - [#7852](https://github.com/scalar/scalar/pull/7852): fix: enable form rows by default
9
+
10
+ #### Updated Dependencies
11
+
12
+ - **@scalar/snippetz@0.6.6**
13
+ - [#7859](https://github.com/scalar/scalar/pull/7859): fix the use of httpx.AsyncClient async context manager
14
+
15
+ - **@scalar/components@0.16.26**
16
+ - [#7846](https://github.com/scalar/scalar/pull/7846): Fix dev dep issue
17
+
18
+ - **@scalar/workspace-store@0.25.2**
19
+
20
+ - **@scalar/openapi-parser@0.24.3**
21
+
22
+ - **@scalar/sidebar@0.7.16**
23
+
24
+ - **@scalar/use-codemirror@0.13.20**
25
+
26
+ - **@scalar/oas-utils@0.6.23**
27
+
28
+ ## 2.19.1
29
+
30
+ ### Patch Changes
31
+
32
+ - [#7828](https://github.com/scalar/scalar/pull/7828): fix: switch to upsert params due to race condition
33
+ - [#7814](https://github.com/scalar/scalar/pull/7814): fix: additional properties generate invalid example
34
+
35
+ #### Updated Dependencies
36
+
37
+ - **@scalar/workspace-store@0.25.1**
38
+ - [#7828](https://github.com/scalar/scalar/pull/7828): fix: switch to upsert params due to race condition
39
+
40
+ - **@scalar/oas-utils@0.6.22**
41
+ - [#7814](https://github.com/scalar/scalar/pull/7814): fix: additional properties generate invalid example
42
+
43
+ - **@scalar/sidebar@0.7.15**
44
+
45
+ - **@scalar/components@0.16.25**
46
+
47
+ - **@scalar/use-codemirror@0.13.19**
48
+
3
49
  ## 2.19.0
4
50
 
5
51
  ### Minor Changes