ga4-export-fixer 0.3.2-dev.0 → 0.3.2-dev.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ga4-export-fixer",
3
- "version": "0.3.2-dev.0",
3
+ "version": "0.3.2-dev.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -338,7 +338,8 @@ The last full table refresh was done using this configuration:
338
338
  ${JSON.stringify(
339
339
  Object.fromEntries(
340
340
  // don't display the default arrays here, their contents are included in the main arrays via the mergeSQLConfigurations function
341
- Object.entries(mergedConfig).filter(([key]) => !key.startsWith('default'))
341
+ // dataformTAbleConfig is also excluded since it's not relevant for the SQL generation and is more of a deployment detail
342
+ Object.entries(mergedConfig).filter(([key]) => !key.startsWith('default') && key !== 'dataformTableConfig')
342
343
  ),
343
344
  null,
344
345
  2