Simon Weaver
Simon Weaver
The Angular / typescript client also generated an invalid enumeration with duplicated values that for some reason weren't separated. But of course the main error is that it's generated `MethodBase`...
Same issue. Interestingly I only discovered it because it generated the following invalid code. Yes it's duplicates some enum values and not put a `|` separator between them. ``` export...
I couldn't find any workable solution right now other than to switch to using `NewtonsoftJsonSchemaGeneratorSettings`. Your settings may vary. services.AddOpenApiDocument(document => { document.DocumentName = "a"; document.SchemaSettings = new NewtonsoftJsonSchemaGeneratorSettings() {...
The problem with the 'generics error' is if you've upgraded from a previous version you're sort of in the dark as to which controller or method is broken. I have...
It seems that `property1` below will be added to the API but `property2` will not. // Why does this get added to the API? It is private! private string Property1...
Great, thanks for clarifying. I only look at my tunnels about twice a year (!) - so good to know the direction, and thanks for adding the note.
It looks especially bad because it isn't consistent from one bar to the next :-( This is kind of a border line (pun intended) deal breaker type issue because it...
Angular 16.01 has the following versions for a new app. "tslib": "^2.3.0" "typescript": "~5.0.2" Why does Akita have a hardcoded version? I don't want to replace ^2.3.0 with 2.4.1! Is...
@stipsan I just started using the library today for an list of questions with expandable answers. I want the question and answer to scroll onto the screen if it isn't...
@joshaspentech Clearly a simple library for setting and reading cookies shouldn't need regular updates but not updating the project to support newer Angular versions is a red flag that it's...