acacode/swagger-typescript-api

Missing Export for GenerateApiParams Type in Version 13.1.0

Closed this issue · 1 comments

Hello,

I am using the programmatic API from the swagger-typescript-api package and have encountered an issue with the GenerateApiParams type. In version 13.0.28, I was able to import it successfully using the following code:

import type { GenerateApiParams } from 'swagger-typescript-api';

However, after upgrading to version 13.1.0, I noticed that the GenerateApiParams type is no longer exported. This change has affected my project, as I rely on this type for my implementation.

Is it possible to export types from src/index.ts :

export type * from "../types/index.js";

Fixed by 7b7351f. I guess.