Skip to content

Commit 0cbcbba

Browse files
authored
Release 9.0.2 (acacode#250)
* fix: problem with typings in .d.ts file * bump: up version to 9.0.2
1 parent 0272739 commit 0cbcbba

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# next release
22

3+
# 9.0.2
4+
5+
Fixes:
6+
- 9.0.1 won't build with tsc when imported (thanks @mastermatt)
7+
38
# 9.0.1
49

510
Fixes:

index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ export type ModelType = {
270270
content: string;
271271
};
272272

273-
const enum SCHEMA_TYPES {
273+
export enum SCHEMA_TYPES {
274274
ARRAY = "array",
275275
OBJECT = "object",
276276
ENUM = "enum",

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swagger-typescript-api",
3-
"version": "9.0.1",
3+
"version": "9.0.2",
44
"description": "Generate typescript/javascript api from swagger schema",
55
"scripts": {
66
"cli:json": "node index.js -r -d -p ./swagger-test-cli.json -n swagger-test-cli.ts",

0 commit comments

Comments
 (0)