(formId: string, watchId: string)
| 95 | } |
| 96 | |
| 97 | export function buildRenewWatchUrl(formId: string, watchId: string): string { |
| 98 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}/watches/${encodeURIComponent(watchId)}:renew` |
| 99 | logger.debug('Built Google Forms renew watch URL', { finalUrl }) |
| 100 | return finalUrl |
| 101 | } |