@scalar/api-client 2.36.0 → 2.36.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.
- package/CHANGELOG.md +29 -0
- package/dist/style.css +1 -1
- package/dist/v2/blocks/operation-block/helpers/build-request-body.d.ts.map +1 -1
- package/dist/v2/blocks/operation-block/helpers/build-request-body.js +28 -27
- package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-body.d.ts.map +1 -1
- package/dist/v2/blocks/operation-code-sample/helpers/operation-to-har/process-body.js +47 -42
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/components/OAuth2.vue.js +65 -59
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/extract-security-scheme-secrets.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/extract-security-scheme-secrets.js +57 -42
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.js +44 -41
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/secret-types.d.ts +2 -2
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/secret-types.d.ts.map +1 -1
- package/dist/v2/components/sidebar/Sidebar.vue.d.ts.map +1 -1
- package/dist/v2/components/sidebar/Sidebar.vue.js +38 -34
- package/dist/v2/features/app/components/DesktopTabs.vue.d.ts.map +1 -1
- package/dist/v2/features/app/components/DesktopTabs.vue.js +34 -30
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Components/CodeSnippet/helpers/get-har-request.d.ts.map +1 -1
- package/dist/views/Components/CodeSnippet/helpers/get-har-request.js +44 -45
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.36.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#8403](https://github.com/scalar/scalar/pull/8403): Persist auth url and token url in local storage
|
|
8
|
+
- [#8402](https://github.com/scalar/scalar/pull/8402): Fix raw binary request bodies so uploaded files are sent correctly and code samples show file references.
|
|
9
|
+
- [#8398](https://github.com/scalar/scalar/pull/8398): fix code snippet HAR request URL generation to URL-encode substituted path parameter values, matching request sending behavior.
|
|
10
|
+
- [#8386](https://github.com/scalar/scalar/pull/8386): feat: app drag region for macos
|
|
11
|
+
- [#8408](https://github.com/scalar/scalar/pull/8408): Use the secret oauth urls before the default flow urls
|
|
12
|
+
- [#8407](https://github.com/scalar/scalar/pull/8407): Fix conditional rendering for token URL
|
|
13
|
+
|
|
14
|
+
#### Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- **@scalar/workspace-store@0.39.1**
|
|
17
|
+
- [#8393](https://github.com/scalar/scalar/pull/8393): fix: correctly update active tab on tab close event
|
|
18
|
+
- [#8403](https://github.com/scalar/scalar/pull/8403): Persist auth url and token url in local storage
|
|
19
|
+
|
|
20
|
+
- **@scalar/snippetz@0.7.3**
|
|
21
|
+
- [#8404](https://github.com/scalar/scalar/pull/8404): Preserve duplicate query parameters in generated code snippets. php/guzzle: preserve duplicate query parameters as arrays.
|
|
22
|
+
|
|
23
|
+
- **@scalar/sidebar@0.8.5**
|
|
24
|
+
- [#8386](https://github.com/scalar/scalar/pull/8386): feat: add spacer slot to sidebar
|
|
25
|
+
|
|
26
|
+
- **@scalar/oas-utils@0.10.4**
|
|
27
|
+
|
|
28
|
+
- **@scalar/components@0.20.5**
|
|
29
|
+
|
|
30
|
+
- **@scalar/use-codemirror@0.14.5**
|
|
31
|
+
|
|
3
32
|
## 2.36.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|