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.
Files changed (2) hide show
  1. package/helpers.js +1 -1
  2. 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('\n, ');
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ga4-export-fixer",
3
- "version": "0.1.6-dev.8",
3
+ "version": "0.1.6-dev.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [