ga4-export-fixer 0.2.6-dev.2 → 0.2.6-dev.3

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/package.json +3 -2
  2. package/preOperations.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ga4-export-fixer",
3
- "version": "0.2.6-dev.2",
3
+ "version": "0.2.6-dev.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -17,7 +17,8 @@
17
17
  "documentation.js"
18
18
  ],
19
19
  "scripts": {
20
- "test": "node tests/ga4EventsEnhanced.test.js && node tests/mergeSQLConfigurations.test.js",
20
+ "test": "node tests/ga4EventsEnhanced.test.js && node tests/mergeSQLConfigurations.test.js && node tests/preOperations.test.js",
21
+ "test:preops": "node tests/preOperations.test.js",
21
22
  "test:events": "node tests/ga4EventsEnhanced.test.js",
22
23
  "test:merge": "node tests/mergeSQLConfigurations.test.js",
23
24
  "readme": "node scripts/updateReadme.js",
package/preOperations.js CHANGED
@@ -258,5 +258,6 @@ ${preOperationsSQL}
258
258
  };
259
259
 
260
260
  module.exports = {
261
- setPreOperations
261
+ setPreOperations,
262
+ _internal: { getExportDateRangeStart },
262
263
  };