pillsilly

Results 10 comments of pillsilly

> Specifying path to angular packages as @kctang mentioned was enough for me to fix the error, thank you for that. I just wanna point out that the path belongs...

> Because `ngx-filesaver` used of URL parsing, so you can use: > > ```diff > - const fileName = `save%.${type}`; > + const fileName = encodeURI(`save%.${type}`); > ``` > >...

draft implementation ``` diff --git a/node_modules/ng-openapi-gen/lib/ng-openapi-gen.js b/node_modules/ng-openapi-gen/lib/ng-openapi-gen.js index aca9882..38c6cfe 100644 --- a/node_modules/ng-openapi-gen/lib/ng-openapi-gen.js +++ b/node_modules/ng-openapi-gen/lib/ng-openapi-gen.js @@ -286,6 +286,24 @@ function runNgOpenApiGen() { } } }); + + function filterPaths(paths, excludeTags, excludePaths)...

> Hi @pillsilly, did you tag me by mistake? I have not participated in this issue and I am not a maintainer of this repository. If you want my feedback...

@luisfpg would you kindly help to check this PR.

In my case, it's like REST paths are defined in A.yaml while corresponding models are mostly placed in B.yaml. and when in B we have a Model semantically be like...

@fshost