Oliwia Rogala
Oliwia Rogala
The crashing issue was addressed in https://github.com/swagger-api/swagger-js/pull/3380, released as https://github.com/swagger-api/swagger-js/releases/tag/v3.25.3. As it turned out, the complex specification was being eventually resolved, but the operations took too long due to the...
Rendering schemas not resolved by Swagger Client addressed in https://github.com/swagger-api/swagger-ui/pull/9629.
I created a separate issue for `maxProperties` not being validated by Swagger UI https://github.com/swagger-api/swagger-ui/issues/9675 The issue with only resetting some parameters seems related to this PR/issue, so leaving it here...
Thanks for trying to fix the issue with `maxProperties`, but the `sampleFromSchemaGeneric` function works correctly - we should generate an example with limited amount of properties. You can see that...
The error was addressed in https://github.com/swagger-api/swagger-ui/pull/9877. We decided that the source maps will only be available for browser environment builds, so that it's possible for them to be debugged in...
The packages that I've been working on: - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-json - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-yaml-1-2 - https://github.com/swagger-api/apidom/tree/main/packages/apidom-ast I'll make the suggested changes from https://github.com/swagger-api/apidom/pull/3646 to Parser and to the other packages, as...
Status update for each of the previously mentioned packages: Changes merged into main: - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-json - https://github.com/swagger-api/apidom/tree/main/packages/apidom-parser-adapter-yaml-1-2 Changes waiting for a PR review: - https://github.com/swagger-api/apidom/tree/main/packages/apidom-ast - #3681 Currently...
Addressed in https://github.com/swagger-api/swagger-ui/pull/9927 with a swagger-client change: https://github.com/swagger-api/swagger-js/pull/3511
The missing configs are: - operationsSorter - tagsSorter - onComplete - modelPropertyMacro - parameterMacro
`request.curlOptions` is set inside of `requestInterceptor`: > This can be set on the mutated request in the requestInterceptor function. For example request.curlOptions = ["-g", "--limit-rate 20k"] The default for it...