@scalar/oas-utils 0.2.12 → 0.2.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @scalar/oas-utils
2
2
 
3
+ ## 0.2.13
4
+
5
+ ### Patch Changes
6
+
7
+ - 1a675be: feat: add empty state + drafts collection
8
+
3
9
  ## 0.2.12
4
10
 
5
11
  ### Patch Changes
@@ -8,7 +8,7 @@ import { deepMerge } from '../../../helpers/deepMerge.js';
8
8
  const requestBodySchema = z.any();
9
9
  const parametersSchema = z.record(z.string(), z.any());
10
10
  const requestSchema = z.object({
11
- path: z.string().optional().default('/'),
11
+ path: z.string().optional().default(''),
12
12
  method: z
13
13
  .enum(Object.keys(REQUEST_METHODS))
14
14
  .optional()
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "specification",
17
17
  "yaml"
18
18
  ],
19
- "version": "0.2.12",
19
+ "version": "0.2.13",
20
20
  "engines": {
21
21
  "node": ">=18"
22
22
  },
@@ -93,7 +93,7 @@
93
93
  "@scalar/themes": "0.9.13"
94
94
  },
95
95
  "devDependencies": {
96
- "@scalar/openapi-parser": "^0.7.1",
96
+ "@scalar/openapi-parser": "^0.7.2",
97
97
  "axios": "^1.6.8",
98
98
  "httpsnippet-lite": "^3.0.5",
99
99
  "openapi-types": "^12.1.3",