(accessToken: string)
| 3 | export const MONDAY_API_URL = 'https://api.monday.com/v2' |
| 4 | |
| 5 | export function mondayHeaders(accessToken: string): Record<string, string> { |
| 6 | return { |
| 7 | 'Content-Type': 'application/json', |
| 8 | Authorization: accessToken, |
| 9 | 'API-Version': '2026-04', |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * Validates a Monday.com numeric ID and returns the sanitized string. |
no outgoing calls
no test coverage detected