@azzas/azzas-tracker-web 2.0.0-preview.12 → 2.0.0-preview.13
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/mod.cjs +5 -0
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.global.js +5 -0
- package/dist/mod.global.js.map +1 -1
- package/dist/mod.js +5 -0
- package/dist/mod.js.map +1 -1
- package/dist/mod.vtex.global.js +5 -0
- package/package.json +1 -1
package/dist/mod.cjs
CHANGED
|
@@ -1358,6 +1358,11 @@ var legacyGetters = {
|
|
|
1358
1358
|
// src/params/adapters/meta/index.ts
|
|
1359
1359
|
var metaAdapter = {
|
|
1360
1360
|
user_info: getUserInfo,
|
|
1361
|
+
brand: (context, config2) => {
|
|
1362
|
+
if (config2 == null ? void 0 : config2.brand) return config2.brand;
|
|
1363
|
+
if (context == null ? void 0 : context.meta.brand) return context.meta.brand;
|
|
1364
|
+
return null;
|
|
1365
|
+
},
|
|
1361
1366
|
content_type: (context) => {
|
|
1362
1367
|
return context.meta.content_type || null;
|
|
1363
1368
|
},
|