(formId: string)
| 83 | } |
| 84 | |
| 85 | export function buildCreateWatchUrl(formId: string): string { |
| 86 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches` |
| 87 | logger.debug('Built Google Forms create watch URL', { finalUrl }) |
| 88 | return finalUrl |
| 89 | } |
| 90 | |
| 91 | export function buildDeleteWatchUrl(formId: string, watchId: string): string { |
| 92 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches/${encodeURIComponent(watchId)}` |