Skip to content

Commit 1113eac

Browse files
Version Packages
1 parent 237a7ca commit 1113eac

5 files changed

+17
-18
lines changed

.changeset/fancy-actors-wait.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

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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+
- [#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.
12+
13+
- [#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`.
14+
315
## 13.0.28
416

517
### Patch Changes
@@ -448,7 +460,7 @@ const Ts = {
448460
*/
449461
EnumFieldsWrapper: (contents) =>
450462
_.map(contents, ({ key, value }) => ` ${Ts.EnumField(key, value)}`).join(
451-
",\n",
463+
",\n"
452464
),
453465
/**
454466
* {\n $A \n}
@@ -467,7 +479,9 @@ const Ts = {
467479
* $A1<...$A2.join(,)>
468480
*/
469481
TypeWithGeneric: (typeName, genericArgs) => {
470-
return `${typeName}${genericArgs.length ? `<${genericArgs.join(",")}>` : ""}`;
482+
return `${typeName}${
483+
genericArgs.length ? `<${genericArgs.join(",")}>` : ""
484+
}`;
471485
},
472486
};
473487
```

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)