ga4-export-fixer 0.2.1-dev.1 → 0.2.1-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.
package/package.json
CHANGED
|
@@ -332,7 +332,14 @@ ${constants.TABLE_DESCRIPTION_SUFFIX}
|
|
|
332
332
|
${constants.TABLE_DESCRIPTION_DOCUMENTATION_LINK}
|
|
333
333
|
|
|
334
334
|
The last full table refresh was done using this configuration:
|
|
335
|
-
${JSON.stringify(
|
|
335
|
+
${JSON.stringify(
|
|
336
|
+
Object.fromEntries(
|
|
337
|
+
// don't display the default arrays here, their contents are included in the main arrays via the mergeSQLConfigurations function
|
|
338
|
+
Object.entries(mergedConfig).filter(([key]) => !key.startsWith('default'))
|
|
339
|
+
),
|
|
340
|
+
null,
|
|
341
|
+
2
|
|
342
|
+
)}`;
|
|
336
343
|
|
|
337
344
|
// the defaults for the dataform table config
|
|
338
345
|
const defaultDataformTableConfig = {
|