(operation: OperationObject)
| 425 | `${method}_operation`); |
| 426 | |
| 427 | const explicitToolPath = (operation: OperationObject): string | undefined => { |
| 428 | const value = (operation as Record<string, unknown>)["x-executor-toolPath"]; |
| 429 | return typeof value === "string" && value.trim().length > 0 ? value.trim() : undefined; |
| 430 | }; |
| 431 | |
| 432 | const explicitPathTemplate = (operation: OperationObject): string | undefined => { |
| 433 | const value = (operation as Record<string, unknown>)["x-executor-pathTemplate"]; |
no outgoing calls
no test coverage detected