ga4-export-fixer 0.4.6-dev.0 → 0.4.6-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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const helpers = require('./helpers/index.js');
2
2
  const ga4EventsEnhanced = require('./tables/ga4EventsEnhanced.js');
3
- const { setPreOperations } = require('./preOperations.js');
3
+ const { setPreOperations: setPreOperationsRaw } = require('./preOperations.js');
4
4
  const { validateBaseConfig } = require('./inputValidation.js');
5
5
  const { mergeSQLConfigurations } = require('./utils.js');
6
6
  const { baseConfig } = require('./defaultConfig.js');
@@ -13,7 +13,7 @@ const setPreOperations = (config) => {
13
13
  // do input validation on the merged config
14
14
  validateBaseConfig(mergedConfig);
15
15
 
16
- return setPreOperations(mergedConfig);
16
+ return setPreOperationsRaw(mergedConfig);
17
17
  };
18
18
 
19
19
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ga4-export-fixer",
3
- "version": "0.4.6-dev.0",
3
+ "version": "0.4.6-dev.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [