ga4-export-fixer 0.1.4-dev.0 → 0.1.4-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
|
@@ -420,7 +420,7 @@ Created by the ga4-export-fixer package.`;
|
|
|
420
420
|
// set the default values for table name and dataset, if not provided in the config
|
|
421
421
|
const setDefaults = () => {
|
|
422
422
|
const getDatasetName = (sourceTable) => {
|
|
423
|
-
if (isDataformTableReferenceObject(sourceTable)) {
|
|
423
|
+
if (utils.isDataformTableReferenceObject(sourceTable)) {
|
|
424
424
|
return sourceTable.dataset || sourceTable.schema;
|
|
425
425
|
}
|
|
426
426
|
if (typeof sourceTable === 'string' && /^`[^\.]+\.[^\.]+\.[^\.]+`$/.test(sourceTable)) {
|