@scalar/api-reference 1.44.11 → 1.44.13
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/browser/standalone.js +3353 -3321
- package/dist/browser/webpack-stats.json +1 -1
- package/dist/components/Content/Models/components/ClassicLayout.vue.js +1 -1
- package/dist/components/Content/Models/components/ClassicLayout.vue2.js +2 -2
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts +2 -3
- package/dist/components/Content/Schema/SchemaComposition.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaComposition.vue.js +3 -3
- package/dist/components/Content/Schema/SchemaEnumValues.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaEnumValues.vue2.js +2 -2
- package/dist/components/Content/Schema/SchemaObjectProperties.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaObjectProperties.vue.js +4 -4
- package/dist/components/Content/Schema/SchemaProperty.vue.d.ts.map +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaProperty.vue2.js +3 -3
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue.js +1 -1
- package/dist/components/Content/Schema/SchemaPropertyHeading.vue2.js +3 -3
- package/dist/components/Content/Schema/helpers/get-compositions-to-render.js +3 -3
- package/dist/components/Content/Schema/helpers/get-enum-values.js +2 -2
- package/dist/components/Content/Schema/helpers/get-schema-type.d.ts +1 -2
- package/dist/components/Content/Schema/helpers/get-schema-type.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/get-schema-type.js +3 -9
- package/dist/components/Content/Schema/helpers/merge-all-of-schemas.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/merge-all-of-schemas.js +15 -14
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.d.ts +1 -5
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/optimize-value-for-display.js +4 -6
- package/dist/components/Content/Schema/helpers/schema-name.d.ts +2 -2
- package/dist/components/Content/Schema/helpers/schema-name.d.ts.map +1 -1
- package/dist/components/Content/Schema/helpers/schema-name.js +4 -4
- package/dist/components/Content/Schema/helpers/sort-property-names.js +2 -2
- package/dist/style.css +76 -76
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @scalar/api-reference
|
|
2
2
|
|
|
3
|
+
## 1.44.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
#### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- **@scalar/workspace-store@0.28.4**
|
|
10
|
+
- [#8047](https://github.com/scalar/scalar/pull/8047): fix: unpack proxy when update an environment
|
|
11
|
+
|
|
12
|
+
- **@scalar/api-client@2.23.4**
|
|
13
|
+
- [#8058](https://github.com/scalar/scalar/pull/8058): fix: correctly drop changes when modal closes
|
|
14
|
+
- [#8059](https://github.com/scalar/scalar/pull/8059): fix: harden auth secret extraction plus tests
|
|
15
|
+
|
|
16
|
+
- **@scalar/agent-chat@0.5.4**
|
|
17
|
+
|
|
18
|
+
- **@scalar/oas-utils@0.6.35**
|
|
19
|
+
|
|
20
|
+
- **@scalar/sidebar@0.7.28**
|
|
21
|
+
|
|
22
|
+
- **@scalar/components@0.17.5**
|
|
23
|
+
|
|
24
|
+
## 1.44.12
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
|
|
29
|
+
|
|
30
|
+
#### Updated Dependencies
|
|
31
|
+
|
|
32
|
+
- **@scalar/workspace-store@0.28.3**
|
|
33
|
+
- [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
|
|
34
|
+
- [#8034](https://github.com/scalar/scalar/pull/8034): fix: allow setting servers which dont exist in the document (from the config)
|
|
35
|
+
|
|
36
|
+
- **@scalar/api-client@2.23.3**
|
|
37
|
+
- [#8035](https://github.com/scalar/scalar/pull/8035): fix: correctly resolve and validate refs
|
|
38
|
+
- [#8033](https://github.com/scalar/scalar/pull/8033): fix: add failsafe to incorrect array parameter style
|
|
39
|
+
- [#8043](https://github.com/scalar/scalar/pull/8043): fix: :deep selector for bun build
|
|
40
|
+
|
|
41
|
+
- **@scalar/agent-chat@0.5.3**
|
|
42
|
+
- [#8043](https://github.com/scalar/scalar/pull/8043): fix: :deep selector for bun build
|
|
43
|
+
|
|
44
|
+
- **@scalar/oas-utils@0.6.34**
|
|
45
|
+
|
|
46
|
+
- **@scalar/sidebar@0.7.27**
|
|
47
|
+
|
|
48
|
+
- **@scalar/components@0.17.4**
|
|
49
|
+
|
|
3
50
|
## 1.44.11
|
|
4
51
|
|
|
5
52
|
### Patch Changes
|