ga4-export-fixer 0.1.6-dev.1 → 0.1.6-dev.2

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/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2,6 +2,7 @@ const helpers = require('./helpers.js');
2
2
  const ga4EventsEnhanced = require('./tables/ga4EventsEnhanced.js');
3
3
  const preOperations = require('./preOperations.js');
4
4
  const { validateConfig } = require('./inputValidation.js');
5
+ const { mergeSQLConfigurations } = require('./utils.js');
5
6
 
6
7
  // export setPreOperations with default configuration for usage with downstream tables
7
8
  const setPreOperations = (config) => {
@@ -31,7 +32,7 @@ const setPreOperations = (config) => {
31
32
  },
32
33
  };
33
34
 
34
- const mergedConfig = utils.mergeSQLConfigurations(defaultConfig, config);
35
+ const mergedConfig = mergeSQLConfigurations(defaultConfig, config);
35
36
 
36
37
  return preOperations.setPreOperations(mergedConfig);
37
38
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ga4-export-fixer",
3
- "version": "0.1.6-dev.1",
3
+ "version": "0.1.6-dev.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [