({ path, href, title }, client)
| 85 | } |
| 86 | |
| 87 | export function pageView({ path, href, title }, client) { |
| 88 | if (!path || !href || !title) { |
| 89 | throw new Error('Missing path, href or title in page call for GA') |
| 90 | } |
| 91 | client.pageview(path, href, title).send() |
| 92 | } |
| 93 | |
| 94 | export function trackEvent({ category, event, label, value, properties }, client, customDimensions) { |
| 95 | // Prepare Custom Dimensions to be Reported. |