(formId: string)
| 77 | } |
| 78 | |
| 79 | export function buildListWatchesUrl(formId: string): string { |
| 80 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches` |
| 81 | logger.debug('Built Google Forms list watches URL', { finalUrl }) |
| 82 | return finalUrl |
| 83 | } |
| 84 | |
| 85 | export function buildCreateWatchUrl(formId: string): string { |
| 86 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches` |