openapi-backend icon indicating copy to clipboard operation
openapi-backend copied to clipboard

Build, Validate, Route, Authenticate and Mock using OpenAPI

Results 109 openapi-backend issues
Sort by recently updated
recently updated
newest added

I have generated my types with `openapi-client-axios-typegen`. ```typescript namespace GetMachineBySerialNumber { namespace Parameters { export type Serialnumber = /** * example: * 205655 */ Components.Schemas.MachineSerialnumber /* int32 */; } export...

Hey, The [OpenAPI specs](https://swagger.io/docs/specification/serialization/) outline a way to serialize exploded object query parameters. This means that with a spec like the following: `query-parameters -> {shape: "square", color: "red"}` ```yaml parameters:...

enhancement

https://github.com/anttiviljami/openapi-backend/issues/569

Hello guys! Maybe you could help me with these two questions. I couldn't find any information in the documentation. 1) Is it possible for this library to handle the errors...

Hi, trying to use this openapi-backend to validate and follow our openapi specification, but currently running into an issue with the handleRequest. this is our lambda: ```ts "use strict"; import...

Method to re-create error: 1. git clone https://github.com/openapistack/openapi-backend.git /opt/ 2. cd /opt/openapi-backend/examples/fastify/ 3. Follow instructions from https://github.com/openapistack/openapi-backend/tree/main/examples/fastify 4. npm install 5. npm start Error: `root@api:/opt/openapi-backend/examples/fastify# npm start > [email protected] start...

The original schema: ``` { "title": "Request", "type": "object", "additionalProperties": true, "properties": { "requestBody": { "type": "object", "additionalProperties": false, "properties": { "active": { "description": "Active style.", "type": "object", "additionalProperties": false,...

When I try to mock a server in browser I get the error "process.cwd is not a function" What should I do as this does work for my test when...