ga4-export-fixer 0.1.6-dev.8 → 0.1.6-dev.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/helpers.js +1 -1
- package/package.json +1 -1
package/helpers.js
CHANGED
|
@@ -610,7 +610,7 @@ const aggregateValues = (values) => {
|
|
|
610
610
|
return values.map(value => {
|
|
611
611
|
const sqlExpression = aggregateValue(value.column, value.aggregateType, value.timestampColumn)
|
|
612
612
|
return `${sqlExpression}${value.alias ? ` as ${value.alias}` : ''}`;
|
|
613
|
-
}).join('
|
|
613
|
+
}).join(',\n ');
|
|
614
614
|
}
|
|
615
615
|
throw new Error("aggregateValues: 'values' must be an array of objects with 'column', 'aggregateType', and 'timestampColumn' properties.");
|
|
616
616
|
};
|