@walkeros/web-destination-gtag 3.4.0 → 3.4.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/dist/dev.d.mts +6 -3
- package/dist/dev.d.ts +6 -3
- package/dist/dev.js +1 -1
- package/dist/dev.js.map +1 -1
- package/dist/dev.mjs +1 -1
- package/dist/dev.mjs.map +1 -1
- package/dist/examples/index.d.mts +6 -3
- package/dist/examples/index.d.ts +6 -3
- package/dist/examples/index.js +24 -5
- package/dist/examples/index.mjs +24 -5
- package/dist/walkerOS.json +36 -11
- package/package.json +2 -2
package/dist/dev.d.mts
CHANGED
|
@@ -178,9 +178,12 @@ declare const gtmDataLayerPush: Flow.StepExample;
|
|
|
178
178
|
*/
|
|
179
179
|
declare const consentModeV2: Flow.StepExample;
|
|
180
180
|
/**
|
|
181
|
-
* GA4 event
|
|
182
|
-
* Each section (data, context, globals, user, source, event
|
|
183
|
-
*
|
|
181
|
+
* GA4 event flattening selected event sections into prefixed params.
|
|
182
|
+
* Each listed section (data, context, globals, user, source, event) is
|
|
183
|
+
* flattened into params like data_*, context_*, user_*, etc.
|
|
184
|
+
* The `version` section is intentionally omitted — version_source is baked
|
|
185
|
+
* in at build time from @walkeros/core's package.json, so asserting on it
|
|
186
|
+
* would couple the fixture to the release version.
|
|
184
187
|
*/
|
|
185
188
|
declare const ga4WithIncludeAll: Flow.StepExample;
|
|
186
189
|
/**
|
package/dist/dev.d.ts
CHANGED
|
@@ -178,9 +178,12 @@ declare const gtmDataLayerPush: Flow.StepExample;
|
|
|
178
178
|
*/
|
|
179
179
|
declare const consentModeV2: Flow.StepExample;
|
|
180
180
|
/**
|
|
181
|
-
* GA4 event
|
|
182
|
-
* Each section (data, context, globals, user, source, event
|
|
183
|
-
*
|
|
181
|
+
* GA4 event flattening selected event sections into prefixed params.
|
|
182
|
+
* Each listed section (data, context, globals, user, source, event) is
|
|
183
|
+
* flattened into params like data_*, context_*, user_*, etc.
|
|
184
|
+
* The `version` section is intentionally omitted — version_source is baked
|
|
185
|
+
* in at build time from @walkeros/core's package.json, so asserting on it
|
|
186
|
+
* would couple the fixture to the release version.
|
|
184
187
|
*/
|
|
185
188
|
declare const ga4WithIncludeAll: Flow.StepExample;
|
|
186
189
|
/**
|