( operation: UnknownRecord, method: string, path: string, )
| 138 | } |
| 139 | |
| 140 | function getRequestName( |
| 141 | operation: UnknownRecord, |
| 142 | method: string, |
| 143 | path: string, |
| 144 | ): string { |
| 145 | return normalizeImportName( |
| 146 | operation.summary || operation.operationId, |
| 147 | `${method.toUpperCase()} ${path}`, |
| 148 | ) |
| 149 | } |
| 150 | |
| 151 | function getServers( |
| 152 | raw: UnknownRecord, |
no test coverage detected