Elby Basolis

Results 14 comments of Elby Basolis

@alexlren I think I have accomplished the readOnly portion of this this using customizeAjv and Lodash (have not written tests for it yet) ```typescript const customizeAjv: AjvCustomizer = (ajv, opts,...

@anttiviljami @crickford I just made a PR for a similar feature, but using the 'content' property instead of 'style' #120 Hopefully this is helpful in the mean time.

I'm also having having an issue when using a recursive structure in a parameter. The definitions compile to valid schema, but if I turn off parameter validation or remove the...

@snakuzzo you can set `{validate: false}` in your call to the OpenAPIBackend constructior. Note that this will not validate your requests before they execute your handlers. I've determined the issue...

@snakuzzo if you have circular refs in your parameters (or probably anywhere Ajv is used for validation) and you absolutely must validate those params upon request, then I'm not sure...

Hey @snakuzzo, I've been working on other stuff lately. Might give it another shot today, but I will definitely get around to it at some point. Would you mind posting...

@anttiviljami I noticed we use `SwaggerParser.dereference` instead of `SwaggerParser.bundle`, which keeps references in-tact for this.definition. Without changing this, I'm not sure this library can support recursive schema definitions while using...

@snakuzzo working on a PR now - trying to get it out by today.

@snakuzzo I've added a PR which should address this problem without re-writing too much of the library. Until it gets merged however, you may be able to solve the problem...

@anttiviljami no problems with the delays - congrats on your new venture! You are correct with my solution to the problem. Keeping the document dereferenced was necessary to handle our...