@scalar/openapi-types 0.1.2 → 0.1.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @scalar/openapi-types
2
2
 
3
+ ## 0.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 2b540b9: Include `3.0.3` in allowed OpenApiV3 versions
8
+
9
+ ## 0.1.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 8759e7f: chore: use build tooling scripts
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -27,3 +27,11 @@ const file: OpenAPI.Document = {
27
27
  paths: {},
28
28
  }
29
29
  ```
30
+
31
+ ## Community
32
+
33
+ We are API nerds. You too? Let’s chat on Discord: <https://discord.gg/scalar>
34
+
35
+ ## License
36
+
37
+ The source code in this repository is licensed under [MIT](https://github.com/scalar/scalar/blob/main/LICENSE).
@@ -180,7 +180,7 @@ export declare namespace OpenAPIV3 {
180
180
  * Version of the OpenAPI specification
181
181
  * @see https://github.com/OAI/OpenAPI-Specification/tree/main/versions
182
182
  */
183
- openapi?: '3.0.0' | '3.0.1' | '3.0.2' | '3.0.2';
183
+ openapi?: '3.0.0' | '3.0.1' | '3.0.2' | '3.0.3';
184
184
  swagger?: undefined;
185
185
  info?: InfoObject;
186
186
  servers?: ServerObject[];
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "swagger",
17
17
  "typescript"
18
18
  ],
19
- "version": "0.1.2",
19
+ "version": "0.1.4",
20
20
  "engines": {
21
21
  "node": ">=18"
22
22
  },
@@ -44,7 +44,7 @@
44
44
  "lint:fix": "eslint . --fix",
45
45
  "test:prepare": "vite-node scripts/load-files.ts",
46
46
  "test:unit": "vite-node scripts/load-files.ts && vitest",
47
- "types:build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
48
- "types:check": "tsc --noEmit --skipLibCheck"
47
+ "types:build": "scalar-types-build",
48
+ "types:check": "scalar-types-check"
49
49
  }
50
50
  }