( tenantUrl: string, tenant: string, service: WorkdayServiceKey )
| 197 | * with any external consumers; the runtime no longer fetches the WSDL. |
| 198 | */ |
| 199 | export function buildWsdlUrl( |
| 200 | tenantUrl: string, |
| 201 | tenant: string, |
| 202 | service: WorkdayServiceKey |
| 203 | ): string { |
| 204 | return `${buildServiceUrl(tenantUrl, tenant, service)}?wsdl` |
| 205 | } |
| 206 | |
| 207 | const XML_ENTITIES: Record<string, string> = { |
| 208 | '&': '&', |
nothing calls this directly
no test coverage detected