(formId: string)
| 49 | } |
| 50 | |
| 51 | export function buildGetFormUrl(formId: string): string { |
| 52 | const finalUrl = `${FORMS_API_BASE}/forms/${encodeURIComponent(formId)}` |
| 53 | logger.debug('Built Google Forms get form URL', { finalUrl }) |
| 54 | return finalUrl |
| 55 | } |
| 56 | |
| 57 | export function buildCreateFormUrl(unpublished?: boolean): string { |
| 58 | const url = new URL(`${FORMS_API_BASE}/forms`) |