(operation: OperationObject)
| 501 | `${method}_operation`); |
| 502 | |
| 503 | const explicitToolPath = (operation: OperationObject): string | undefined => { |
| 504 | const value = (operation as Record<string, unknown>)["x-executor-toolPath"]; |
| 505 | return typeof value === "string" && value.trim().length > 0 ? value.trim() : undefined; |
| 506 | }; |
| 507 | |
| 508 | const explicitPathTemplate = (operation: OperationObject): string | undefined => { |
| 509 | const value = (operation as Record<string, unknown>)["x-executor-pathTemplate"]; |
no outgoing calls
no test coverage detected