@scalar/api-client 2.31.2 → 2.31.3
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/style.css +1 -1
- package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.d.ts.map +1 -1
- package/dist/v2/blocks/operation-code-sample/helpers/get-example-from-schema.js +73 -74
- 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 +42 -40
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/oauth.d.ts +3 -1
- 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 +65 -59
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Request/libs/oauth2.d.ts +7 -0
- package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
- package/dist/views/Request/libs/oauth2.js +76 -64
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.31.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#8313](https://github.com/scalar/scalar/pull/8313): fix: correctly cache schema examples
|
|
8
|
+
- [#8254](https://github.com/scalar/scalar/pull/8254): fix: resolve OAuth2 URLs against interpolated server URL
|
|
9
|
+
|
|
10
|
+
#### Updated Dependencies
|
|
11
|
+
|
|
12
|
+
- **@scalar/openapi-types@0.5.4**
|
|
13
|
+
- [#8275](https://github.com/scalar/scalar/pull/8275): fix(openapi-types): make the `$ref` property in the `ReferenceObject` type required
|
|
14
|
+
|
|
15
|
+
- **@scalar/components@0.19.15**
|
|
16
|
+
- [#8319](https://github.com/scalar/scalar/pull/8319): fix(components): fix adjust sidebar section line height
|
|
17
|
+
|
|
18
|
+
- **@scalar/json-magic@0.11.7**
|
|
19
|
+
- [#8314](https://github.com/scalar/scalar/pull/8314): chore: limit concurrent operations while migrating workspaces
|
|
20
|
+
|
|
21
|
+
- **@scalar/oas-utils@0.8.3**
|
|
22
|
+
- [#8314](https://github.com/scalar/scalar/pull/8314): chore: limit concurrent operations while migrating workspaces
|
|
23
|
+
|
|
24
|
+
- **@scalar/helpers@0.2.18**
|
|
25
|
+
- [#8314](https://github.com/scalar/scalar/pull/8314): chore: limit concurrent operations while migrating workspaces
|
|
26
|
+
|
|
27
|
+
- **@scalar/openapi-parser@0.24.17**
|
|
28
|
+
|
|
29
|
+
- **@scalar/postman-to-openapi@0.4.10**
|
|
30
|
+
|
|
31
|
+
- **@scalar/sidebar@0.7.46**
|
|
32
|
+
|
|
33
|
+
- **@scalar/use-codemirror@0.13.50**
|
|
34
|
+
|
|
35
|
+
- **@scalar/workspace-store@0.35.3**
|
|
36
|
+
|
|
37
|
+
- **@scalar/import@0.4.55**
|
|
38
|
+
|
|
39
|
+
- **@scalar/object-utils@1.2.32**
|
|
40
|
+
|
|
41
|
+
- **@scalar/types@0.6.10**
|
|
42
|
+
|
|
43
|
+
- **@scalar/snippetz@0.6.19**
|
|
44
|
+
|
|
3
45
|
## 2.31.2
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|