(base: string, params: AgiloftSelectRecordsParams)
| 90 | } |
| 91 | |
| 92 | export function buildSelectRecordsUrl(base: string, params: AgiloftSelectRecordsParams): string { |
| 93 | const where = encodeURIComponent(params.where) |
| 94 | return `${base}/ewws/EWSelect/.json?${buildEwBaseQuery(params)}&where=${where}` |
| 95 | } |
| 96 | |
| 97 | export function buildSavedSearchUrl(base: string, params: AgiloftSavedSearchParams): string { |
| 98 | return `${base}/ewws/EWSavedSearch/.json?${buildEwBaseQuery(params)}` |
no test coverage detected