@scalar/api-client 2.23.2 → 2.23.4
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-block/helpers/build-request-parameters.d.ts.map +1 -1
- package/dist/v2/blocks/operation-block/helpers/build-request-parameters.js +54 -53
- 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 +78 -78
- package/dist/v2/blocks/request-block/components/RequestTableRow.vue.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/components/RequestTableRow.vue.js +63 -51
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +1 -1
- package/dist/v2/blocks/response-block/components/ResponseBody.vue.js +2 -2
- package/dist/v2/blocks/scalar-auth-selector-block/helpers/extract-security-scheme-secrets.d.ts +5 -1
- 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 +61 -61
- package/dist/v2/features/modal/Modal.vue.d.ts.map +1 -1
- package/dist/v2/features/modal/Modal.vue.js +2 -2
- package/dist/v2/features/modal/Modal.vue2.js +15 -17
- package/dist/v2/features/modal/helpers/create-api-client-modal.d.ts.map +1 -1
- package/dist/v2/features/modal/helpers/create-api-client-modal.js +58 -41
- package/dist/v2/features/modal/helpers/restore-workspace-state.d.ts +18 -0
- package/dist/v2/features/modal/helpers/restore-workspace-state.d.ts.map +1 -0
- package/dist/v2/features/modal/helpers/restore-workspace-state.js +36 -0
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.23.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#8058](https://github.com/scalar/scalar/pull/8058): fix: correctly drop changes when modal closes
|
|
8
|
+
- [#8059](https://github.com/scalar/scalar/pull/8059): fix: harden auth secret extraction plus tests
|
|
9
|
+
|
|
10
|
+
#### Updated Dependencies
|
|
11
|
+
|
|
12
|
+
- **@scalar/workspace-store@0.28.4**
|
|
13
|
+
- [#8047](https://github.com/scalar/scalar/pull/8047): fix: unpack proxy when update an environment
|
|
14
|
+
|
|
15
|
+
- **@scalar/oas-utils@0.6.35**
|
|
16
|
+
|
|
17
|
+
- **@scalar/sidebar@0.7.28**
|
|
18
|
+
|
|
19
|
+
- **@scalar/components@0.17.5**
|
|
20
|
+
|
|
21
|
+
- **@scalar/use-codemirror@0.13.32**
|
|
22
|
+
|
|
23
|
+
## 2.23.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
|
|
28
|
+
- [#8033](https://github.com/scalar/scalar/pull/8033): fix: add failsafe to incorrect array parameter style
|
|
29
|
+
- [#8043](https://github.com/scalar/scalar/pull/8043): fix: :deep selector for bun build
|
|
30
|
+
|
|
31
|
+
#### Updated Dependencies
|
|
32
|
+
|
|
33
|
+
- **@scalar/workspace-store@0.28.3**
|
|
34
|
+
- [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
|
|
35
|
+
- [#8034](https://github.com/scalar/scalar/pull/8034): fix: allow setting servers which dont exist in the document (from the config)
|
|
36
|
+
|
|
37
|
+
- **@scalar/oas-utils@0.6.34**
|
|
38
|
+
|
|
39
|
+
- **@scalar/sidebar@0.7.27**
|
|
40
|
+
|
|
41
|
+
- **@scalar/components@0.17.4**
|
|
42
|
+
|
|
43
|
+
- **@scalar/use-codemirror@0.13.31**
|
|
44
|
+
|
|
3
45
|
## 2.23.2
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|