(rawUrl: string, label: string)
| 128 | } |
| 129 | |
| 130 | export function assertSafeSapExternalUrl(rawUrl: string, label: string): URL { |
| 131 | const result = checkSapExternalUrlSafety(rawUrl, label) |
| 132 | if (!result.ok) throw new Error(result.message) |
| 133 | return result.url |
| 134 | } |
| 135 | |
| 136 | export const sapS4HanaProxyBodySchema = z |
| 137 | .object({ |
no test coverage detected