Deven Phillips
Deven Phillips
This "sorta" works in some scenarios, but in OpenAPI Generator this can cause strange behaviors where a new class type is created instead of using the existing "Interval" type. Here's...
It's an electron app, so I'm pretty sure it should be simple to package for Linux. I'll try to look when I have some free time.
Oh, wow, it's even easier than I thought. Since the developers are using [Quasar Framework](https://quasar.dev/) it's a simple command to build the Electron app for Linux. 1. Clone the repo...
@jamesnetherton Two questions for you with regards to this. 1. How would the Camel Context decide which route(s) are non-blocking and eligible? Seems like the discussion above suggests a parameter...
@CryptoBugi - I have reviewed the code and right now it works as documented here: https://vertx.io/docs/vertx-web-openapi/java/#_multipartform_data_validation I see what it is that you are asking for beyond what is currently...
Oh! One concern I would raise is that if we implement this, it would also make sense to support XML and potentially any other OpenAPI 3 supported data format. That...
Here's what I am thinking might be a good starting point: ```java @Override public BodyProcessor generate(String mediaTypeName, JsonObject mediaTypeObject, JsonPointer mediaTypePointer, GeneratorContext context) { SchemaHolder schemas = context.getSchemaHolder( mediaTypeObject.getJsonObject("schema", new...
Can you use globs like you can in RPM SPEC files? e.g. --rpm-attr 0755,apache,apache:/usr/lib/python/site-packages/my_package.egg-info/*
I am having a similar (same?) issue when parsing/generating from JSONSchema. I have a reproducer here: https://github.com/InfoSec812/asyncapi-java-parser The Maven build downloads the files for the AsyncAPI Specification, rewrites the `$ref`...
I'm going to see if I can add a new option to merge duplicate POJOs without impacting the existing behavior. Probably and option like `mergeDuplicates` or something. Any hints on...