Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | const API_BASE_URL = process.env.API_BASE_URL || 'https://api.flows.browsway.com' const swaggerHtml = (specUrl) => `<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Flows API — Documentation</title> <link rel="icon" type="image/svg+xml" href="/favicon.ico" /> <link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist@5/swagger-ui.css" /> <style> body { margin: 0; padding: 0; } .swagger-ui .topbar { background-color: #1a1a2e; } .swagger-ui .topbar .download-url-wrapper .select-label { display: none; } </style> </head> <body> <div id="swagger-ui"></div> <script src="https://unpkg.com/swagger-ui-dist@5/swagger-ui-bundle.js"></script> <script> SwaggerUIBundle({ url: '${specUrl}', dom_id: '#swagger-ui', presets: [SwaggerUIBundle.presets.apis, SwaggerUIBundle.SwaggerUIStandalonePreset], layout: 'BaseLayout', deepLinking: true, supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'], tryItOutEnabled: true }) </script> </body> </html>` exports.handler = async () => { const specUrl = `${API_BASE_URL}/v1/openapi.yaml` return { statusCode: 200, headers: { 'Content-Type': 'text/html; charset=utf-8', 'Access-Control-Allow-Origin': '*', 'Cache-Control': 'public, max-age=300' }, body: swaggerHtml(specUrl) } } |