@scalar/api-client 2.36.2 → 2.38.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 +47 -0
- package/dist/style.css +1 -1
- package/dist/v2/blocks/operation-block/OperationBlock.vue.d.ts.map +1 -1
- package/dist/v2/blocks/operation-block/OperationBlock.vue.js +87 -78
- package/dist/v2/blocks/operation-block/helpers/response-cache.d.ts +30 -0
- package/dist/v2/blocks/operation-block/helpers/response-cache.d.ts.map +1 -0
- package/dist/v2/blocks/operation-block/helpers/response-cache.js +12 -0
- package/dist/v2/blocks/request-block/components/RequestBody.vue.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/components/RequestBody.vue.js +2 -2
- package/dist/v2/blocks/request-block/components/RequestBody.vue2.js +65 -61
- package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.d.ts +3 -1
- package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/components/RequestBodyForm.vue.js +42 -32
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
- package/dist/v2/blocks/request-block/helpers/get-form-body-rows.d.ts +4 -7
- package/dist/v2/blocks/request-block/helpers/get-form-body-rows.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/helpers/get-form-body-rows.js +27 -7
- 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 +19 -14
- 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 +72 -66
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/secret-types.d.ts +4 -4
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/secret-types.d.ts.map +1 -1
- package/dist/v2/features/collection/components/Editor/hooks/use-editor-state.d.ts +1 -1
- package/dist/v2/features/collection/components/Editor/hooks/use-editor-state.js +3 -3
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.38.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#8444](https://github.com/scalar/scalar/pull/8444): feat: cache last response for an example
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#8424](https://github.com/scalar/scalar/pull/8424): fix(api-client): persist oauth credentials location
|
|
12
|
+
- [#8428](https://github.com/scalar/scalar/pull/8428): fix: overflow issues for mac app version
|
|
13
|
+
- [#8447](https://github.com/scalar/scalar/pull/8447): fix: propagate schema to request body form-data table
|
|
14
|
+
|
|
15
|
+
#### Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- **@scalar/workspace-store@0.40.1**
|
|
18
|
+
- [#8424](https://github.com/scalar/scalar/pull/8424): feat: export XScalarCredentialsLocation
|
|
19
|
+
- [#8445](https://github.com/scalar/scalar/pull/8445): fix: generate unique id for models
|
|
20
|
+
|
|
21
|
+
- **@scalar/oas-utils@0.10.7**
|
|
22
|
+
|
|
23
|
+
- **@scalar/sidebar@0.8.8**
|
|
24
|
+
|
|
25
|
+
- **@scalar/components@0.20.8**
|
|
26
|
+
|
|
27
|
+
- **@scalar/use-codemirror@0.14.8**
|
|
28
|
+
|
|
29
|
+
## 2.37.0
|
|
30
|
+
|
|
31
|
+
### Minor Changes
|
|
32
|
+
|
|
33
|
+
- [#8426](https://github.com/scalar/scalar/pull/8426): feat: sync with source flow with conflict resolution
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
#### Updated Dependencies
|
|
38
|
+
|
|
39
|
+
- **@scalar/workspace-store@0.40.0**
|
|
40
|
+
- [#8426](https://github.com/scalar/scalar/pull/8426): feat: interact with the original and intermediate documents
|
|
41
|
+
|
|
42
|
+
- **@scalar/oas-utils@0.10.6**
|
|
43
|
+
|
|
44
|
+
- **@scalar/sidebar@0.8.7**
|
|
45
|
+
|
|
46
|
+
- **@scalar/components@0.20.7**
|
|
47
|
+
|
|
48
|
+
- **@scalar/use-codemirror@0.14.7**
|
|
49
|
+
|
|
3
50
|
## 2.36.2
|
|
4
51
|
|
|
5
52
|
### Patch Changes
|