NP

Results 20 comments of NP

@horiuchi looks like there is no solution, only add `unknown` or `any` type to repair compilation: ```ts export interface MicrosoftAspNetCoreMvcProblemDetails { [name: string]: { [key: string]: any; } | unknown;...

@iansan5653, looks like `PathParameters` currently [generating and expected](https://github.com/horiuchi/dtsgenerator/blob/9eb4ec036cf599ffccf985ee8dbba6129c1b7cbb/test/snapshots/openapi-v3/petstore-no-namespace/_expected.d.ts#L25) as well. `Endpoint` I can't imagine any cases where it could be useful, and why `.d.ts` should provide it. Can you provide...

@svda, can you provide a repeatable example of that problem? ``` export interface PathParameters { name: string; } ``` ``` Request ``` works great for me. `dtsgenerator: 3.7.0 ` `@types/express:...

I don't say if something usefull or not, but library should give choose for users, to give a solution for maximum use cases. (for me is get a clear table...

possible fix https://github.com/dylanaraps/pywal/pull/564 but I`m not fluent in python, imm json should be serialized correctly before it exported to file (in Node.js its JSON.stringify)

@anttiviljami related bug in dtsgenerator was fixed in [v3.12.1](https://github.com/horiuchi/dtsgenerator/issues/471) But I know that we use custom modification of dtsgenerator v2, so can you try to update that fork?

According OA spec https://swagger.io/docs/specification/api-host-and-base-path/ If you want to tell client to use other path (not from the other that frontend was loaded) Schema should contain `servers` options, and this library...

`This expects, by default, to have a filter[filter_name] style URL parameter for searching.` Strange expectation of third-party library. OA3 specs says that by default style for `query` params is `form`...

I check this idea and what can I say: 1. `AxiosInstance` does not have `.create` method for creating sub-instances https://github.com/axios/axios/issues/1170 https://github.com/axios/axios/pull/2040 2. We can't use provided `AxiosInstance` without sub-instancing or...

@anttiviljami related bug in dtsgenerator was fixed in [v3.10.0](https://github.com/horiuchi/dtsgenerator/issues/472) But I know that we use custom modification of dtsgenerator v2, so can you try to update that fork?