Skip to content

Commit aae1aad

Browse files
Version Packages
1 parent f91663c commit aae1aad

6 files changed

+19
-23
lines changed

.changeset/fancy-actors-wait.md

-5
This file was deleted.

.changeset/true-lies-read.md

-5
This file was deleted.

.changeset/twelve-plants-invent.md

-5
This file was deleted.

.changeset/weak-lemons-buy.md

-5
This file was deleted.

CHANGELOG.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# swagger-typescript-api
22

3+
## 13.1.0
4+
5+
### Minor Changes
6+
7+
- [#1144](https://github.com/acacode/swagger-typescript-api/pull/1144) [`ea1df18`](https://github.com/acacode/swagger-typescript-api/commit/ea1df18aebec54109972f22e32199a5aeacf7c7f) Thanks [@smorimoto](https://github.com/smorimoto)! - Use `c12` for wider configuration file format support.
8+
9+
### Patch Changes
10+
11+
- [#1171](https://github.com/acacode/swagger-typescript-api/pull/1171) [`c1cc45a`](https://github.com/acacode/swagger-typescript-api/commit/c1cc45a6f27698f2b21cc35696cf529b0e9a210d) Thanks [@smorimoto](https://github.com/smorimoto)! - Fix TypeScript declaration file path.
12+
13+
- [#1145](https://github.com/acacode/swagger-typescript-api/pull/1145) [`73f6bfd`](https://github.com/acacode/swagger-typescript-api/commit/73f6bfddb501211a30f9dca0e1098f905761badb) Thanks [@smorimoto](https://github.com/smorimoto)! - Replace Prettier with Biome as the code formatter to improve performance during the code generation phase.
14+
15+
- [#1141](https://github.com/acacode/swagger-typescript-api/pull/1141) [`821bfad`](https://github.com/acacode/swagger-typescript-api/commit/821bfad0dc8dffc7a8571a052b38f96c3d1c8087) Thanks [@dding-g](https://github.com/dding-g)! - Remove redundant `union-enums` option in favor of `generate-union-enums`.
16+
317
## 13.0.28
418

519
### Patch Changes
@@ -448,7 +462,7 @@ const Ts = {
448462
*/
449463
EnumFieldsWrapper: (contents) =>
450464
_.map(contents, ({ key, value }) => ` ${Ts.EnumField(key, value)}`).join(
451-
",\n",
465+
",\n"
452466
),
453467
/**
454468
* {\n $A \n}
@@ -467,7 +481,9 @@ const Ts = {
467481
* $A1<...$A2.join(,)>
468482
*/
469483
TypeWithGeneric: (typeName, genericArgs) => {
470-
return `${typeName}${genericArgs.length ? `<${genericArgs.join(",")}>` : ""}`;
484+
return `${typeName}${
485+
genericArgs.length ? `<${genericArgs.join(",")}>` : ""
486+
}`;
471487
},
472488
};
473489
```

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "swagger-typescript-api",
3-
"version": "13.0.28",
3+
"version": "13.1.0",
44
"description": "Generate the API client for Fetch or Axios from an OpenAPI Specification",
55
"homepage": "https://github.com/acacode/swagger-typescript-api",
66
"bugs": "https://github.com/acacode/swagger-typescript-api/issues",

0 commit comments

Comments
 (0)