(prefix: string)
| 33 | const api = composePluginApi([openApiHttpPlugin()] as const); |
| 34 | |
| 35 | const unique = (prefix: string) => `${prefix}_${randomBytes(4).toString("hex")}`; |
| 36 | |
| 37 | // A real public, no-auth REST API. No `components.securitySchemes` and no |
| 38 | // top-level `security`, so addSpec derives no auth method and the integration |
no test coverage detected