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

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/README.md CHANGED
@@ -79,7 +79,7 @@ Include the package in the package.json file in your Dataform repository.
79
79
  {
80
80
  "dependencies": {
81
81
  "@dataform/core": "3.0.42",
82
- "ga4-export-fixer": "0.2.5"
82
+ "ga4-export-fixer": "0.3.0"
83
83
  }
84
84
  }
85
85
  ```
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.3.0",
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
  };