@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.js CHANGED
@@ -1329,6 +1329,11 @@ var legacyGetters = {
1329
1329
  // src/params/adapters/meta/index.ts
1330
1330
  var metaAdapter = {
1331
1331
  user_info: getUserInfo,
1332
+ brand: (context, config2) => {
1333
+ if (config2 == null ? void 0 : config2.brand) return config2.brand;
1334
+ if (context == null ? void 0 : context.meta.brand) return context.meta.brand;
1335
+ return null;
1336
+ },
1332
1337
  content_type: (context) => {
1333
1338
  return context.meta.content_type || null;
1334
1339
  },