(formId: string)
| 65 | } |
| 66 | |
| 67 | export function buildBatchUpdateUrl(formId: string): string { |
| 68 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}:batchUpdate` |
| 69 | logger.debug('Built Google Forms batch update URL', { finalUrl }) |
| 70 | return finalUrl |
| 71 | } |
| 72 | |
| 73 | export function buildSetPublishSettingsUrl(formId: string): string { |
| 74 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}:setPublishSettings` |