typescript-generator icon indicating copy to clipboard operation
typescript-generator copied to clipboard

Generates TypeScript from Java - JSON declarations, REST service client

Results 154 typescript-generator issues
Sort by recently updated
recently updated
newest added

We are working together with the library https://github.com/typestack/class-transformer This library does not provide all required values with the constructor, but instead sets the values after instantiation of the class. Unfortunately...

Bumps swagger-annotations from 2.1.13 to 2.2.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.swagger.core.v3:swagger-annotations&package-manager=maven&previous-version=2.1.13&new-version=2.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Bumps [spring-boot-dependencies](https://github.com/spring-projects/spring-boot) from 2.6.6 to 2.7.2. Release notes Sourced from spring-boot-dependencies's releases. v2.7.2 :lady_beetle: Bug Fixes Publishing a docker image to a private registry fails without authentication #31824 In a...

dependencies

Bumps [maven-project-info-reports-plugin](https://github.com/apache/maven-project-info-reports-plugin) from 3.2.2 to 3.4.0. Commits 85082c4 [maven-release-plugin] prepare release maven-project-info-reports-plugin-3.4.0 90f65c2 [MPIR-422] Stop overriding AbstractMavenReport#execute() 91d0efe [MPIR-421] Make all ITs with site.xml use an explicit skin 3846376 [MPIR-420]...

dependencies

… in the constructor. See: https://github.com/vojtechhabarta/typescript-generator/issues/856

I have the following (simplified) data Model: ``` public enum ScenarioType { SBS("SingleBrake (SBS)"), DBS("DragBrake (DBS)"), RPS("RouteProfile (RPS)"), VPS("VelocityProfile (VPS)"), TBS("TestBench (TBS)"), PBS("ParkingBrake (PBS)"), COMS("Commissioning (ComS)"); } @JsonTypeInfo( use =...

Hi, as far as I can see, the typescript-generator unfortunately cannot handle Java-records adequately. If I have a standard Java-Class such as the following: ``` public class Foo { private...

It seems for now all the models are packaged in one single file. Is there a possible configuration to make a new TS file for each Java class, along with...

Jackson supports specifying `names` for subtypes, so the following is possible ```java @JsonTypeInfo( use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "type", visible = true ) @JsonSubTypes({ @JsonSubTypes.Type(value = LongDto.class,...