@scalar/oas-utils 0.2.104 → 0.2.105
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 +12 -0
- package/dist/entities/spec/spec-objects.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @scalar/oas-utils
|
|
2
2
|
|
|
3
|
+
## 0.2.105
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 54fdfcb: chore: remove spec wording
|
|
8
|
+
- Updated dependencies [54fdfcb]
|
|
9
|
+
- Updated dependencies [fa6afe8]
|
|
10
|
+
- @scalar/types@0.0.33
|
|
11
|
+
- @scalar/object-utils@1.1.13
|
|
12
|
+
- @scalar/themes@0.9.67
|
|
13
|
+
- @scalar/openapi-types@0.1.7
|
|
14
|
+
|
|
3
15
|
## 0.2.104
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -40,7 +40,7 @@ const oasContactSchema = z.object({
|
|
|
40
40
|
*/
|
|
41
41
|
const oasInfoSchema = z.object({
|
|
42
42
|
/** REQUIRED. The title of the API. */
|
|
43
|
-
title: z.string().optional().default('
|
|
43
|
+
title: z.string().optional().default('API'),
|
|
44
44
|
/** A short summary of the API. */
|
|
45
45
|
summary: z.string().optional(),
|
|
46
46
|
/** A description of the API. CommonMark syntax MAY be used for rich text representation. */
|
package/package.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"specification",
|
|
17
17
|
"yaml"
|
|
18
18
|
],
|
|
19
|
-
"version": "0.2.
|
|
19
|
+
"version": "0.2.105",
|
|
20
20
|
"engines": {
|
|
21
21
|
"node": ">=18"
|
|
22
22
|
},
|
|
@@ -123,22 +123,22 @@
|
|
|
123
123
|
"@hyperjump/json-schema": "^1.9.6",
|
|
124
124
|
"flatted": "^3.3.1",
|
|
125
125
|
"microdiff": "^1.4.0",
|
|
126
|
-
"nanoid": "^5.0.
|
|
126
|
+
"nanoid": "^5.0.9",
|
|
127
127
|
"yaml": "^2.4.5",
|
|
128
128
|
"zod": "^3.23.8",
|
|
129
|
-
"@scalar/object-utils": "1.1.
|
|
130
|
-
"@scalar/
|
|
131
|
-
"@scalar/
|
|
132
|
-
"@scalar/types": "0.
|
|
129
|
+
"@scalar/object-utils": "1.1.13",
|
|
130
|
+
"@scalar/themes": "0.9.67",
|
|
131
|
+
"@scalar/types": "0.0.33",
|
|
132
|
+
"@scalar/openapi-types": "0.1.7"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
135
|
"type-fest": "^4.20.0",
|
|
136
136
|
"vite": "^5.4.10",
|
|
137
137
|
"vitest": "^1.6.0",
|
|
138
138
|
"zod-to-ts": "github:amritk/zod-to-ts#build",
|
|
139
|
-
"@scalar/build-tooling": "0.1.
|
|
139
|
+
"@scalar/build-tooling": "0.1.13",
|
|
140
140
|
"@scalar/openapi-types": "0.1.7",
|
|
141
|
-
"@scalar/openapi-parser": "0.10.
|
|
141
|
+
"@scalar/openapi-parser": "0.10.7"
|
|
142
142
|
},
|
|
143
143
|
"scripts": {
|
|
144
144
|
"build": "scalar-build-rollup",
|