@azzas/azzas-tracker-web 1.0.65 → 1.0.72

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/README.md CHANGED
@@ -1,130 +1,130 @@
1
- # azzas-tracker-web
2
-
3
- Pacote interno para **Data Tracking** das lojas WEB, centralizando a captura e envio de eventos para diferentes plataformas de mídia (Meta, Dito, DataLayer, etc).
4
-
5
- O objetivo é fornecer uma **camada única e consistente de tracking**, garantindo que todos os eventos sejam tratados, formatados e enviados de forma confiável.
6
-
7
- E, principalmente, centralizar a complexidade e a “inteligência” de tracking **fora dos repositórios das lojas**.
8
-
9
- ---
10
-
11
- ## Fluxo do Tracking
12
-
13
- O pacote segue o seguinte fluxo de eventos:
14
-
15
- 1. **User Action**
16
- Ações do usuário na loja (ex: adicionar ao carrinho, iniciar checkout, finalizar compra).
17
-
18
- 2. **Tracks**
19
- Ponto central que recebe o contexto do evento vindo da ação do usuário e encaminha para o *Formatter*.
20
-
21
- 3. **Formatter**
22
- Acessa a constante `EVENTS` e, baseado no contexto do evento, puxa os parâmetros obrigatórios e entrega a biblioteca de parâmetros (`/params`).
23
-
24
- 4. **Params Library**
25
- Contém **getters** e **resolvers** que garantem que os dados sejam legítimos e que todos os parâmetros sejam corretamente tratados.
26
-
27
- 5. **Adapters**
28
- Módulos responsáveis por enviar os dados formatados para cada destino (Meta, Datalayer, Dito, etc).
29
-
30
- ![FLUXOGRAMA](/public/fluxograma-lib-params.png)
31
-
32
- ## Instalação
33
-
34
-
35
- ```bash
36
- npm install /path/azzas-tracker-web
37
- ```
38
-
39
-
40
- ## Exemplos
41
-
42
- Listagem dos `EVENTS` e função orquestradora `trackWebEvent`:
43
- ```javascript
44
- const EVENTS = {
45
- ADD_PERSONAL_INFO: {
46
- name: 'add_personal_info',
47
- destinations: ['DataLayer'],
48
- requiredParams: ['brand', 'pre_filled', 'currency', 'value', 'subtotal'],
49
- },
50
- VIEW_CART: {
51
- name: 'add_personal_info',
52
- destinations: ['DataLayer', 'Meta', 'Dito'],
53
- requiredParams: ['....'],
54
- }
55
- }
56
-
57
- export async function trackWebEvent(event: EventName, context: EventContext = {}) {
58
- try {
59
- const parameters = await getParameters(context, event);
60
- return await dispatchTrackEvent(event, parameters);
61
- } catch (err) {
62
- return console.error(`[DT] Error tracking event ${event}:`, err);
63
- }
64
- }
65
- ```
66
-
67
- Uso básico da função no consumidor:
68
-
69
-
70
- ```javascript
71
- import { trackWebEvent } from 'azzas-tracker-web';
72
-
73
- // DATA TRACKING | add_personal_info at submit (pre-filled always false)
74
- // @see notion document for more details:
75
- const form: Element = document.querySelector('xxxxxx');
76
- if (form) {
77
- form.addEventListener('submit', () => {
78
- trackWebEvent('ADD_PERSONAL_INFO', { preFilled: false, orderForm: vtexjs.checkout.orderForm });
79
- });
80
- }
81
- ```
82
-
83
- ***OBS***: atente-se ao adicionar eventos novos e contribua na documentação do NOTION ou apenas DOCUMENTE em algum lugar! Seu futuro EU será grato 👍
84
-
85
- ## Teste Local para Ambientes CDN/DENO
86
-
87
- Para testar alterações na biblioteca localmente, simulando a forma como ela é carregada por uma CDN (<script src="...">), use o script npm run dev:deno.
88
-
89
- Este comando realiza o build mais recente da biblioteca, empacota-o e inicia um servidor HTTP local usando o Deno para servir o arquivo
90
-
91
- 1. Aqui nesse repositório, rode o script que inicia o servidor local:
92
-
93
- ```bash
94
- npm run dev:deno
95
- ```
96
-
97
- O servidor será iniciado e começará a servir o seu arquivo de build no seguinte endereço: http://localhost:4507/.
98
-
99
- 2. No Projeto Consumidor (DENO/FRONT):
100
-
101
- Altere o link do <script> no seu projeto para apontar para o servidor local.
102
-
103
- Você deve usar: <script src="http://localhost:4507/dist/mod.global.js"></script>
104
-
105
-
106
- ## Boas Práticas
107
- - Sempre garantir que os `requiredParams` de cada evento estejam preenchidos antes de enviar.
108
-
109
- - Procure sempre manter o envio das ações de usuário o mais ***genérico*** possível. Toda a inteligência e complexidade do tratamento dos dados deve ficar centralizada na lib, e não nos repositórios das lojas.
110
-
111
- - Usar nomes de eventos semânticos e consistentes (ex: VIEW_CART, ADD_PAYMENT_INFO).
112
-
113
- - Manter os contextos enxutos, enviando apenas dados realmente necessários.
114
-
115
- - Cada novo evento deve ser registrado em `EVENTS` com seus destinos e parâmetros obrigatórios. Essa constante talvez venha a ser dinâmica dependendo da MARCA utilizada
116
-
117
-
118
- ## Contribuição
119
-
120
- - Adicionar novos eventos em `EVENTS`.
121
-
122
- - Criar adapter correspondente caso seja necessário integrar com nova plataforma. Nesse caso deve-se avaliar qual será o serviço feito, o que será consumido, para onde será enviado.
123
-
124
- - Garantir que todos os parâmetros obrigatórios estejam mapeados nos getters/resolvers.
125
-
126
- - Executar build (npm run build) antes de testar no checkout/loja.
127
-
128
- ## Authors
129
-
130
- - Lucas Soares
1
+ # azzas-tracker-web
2
+
3
+ Pacote interno para **Data Tracking** das lojas WEB, centralizando a captura e envio de eventos para diferentes plataformas de mídia (Meta, Dito, DataLayer, etc).
4
+
5
+ O objetivo é fornecer uma **camada única e consistente de tracking**, garantindo que todos os eventos sejam tratados, formatados e enviados de forma confiável.
6
+
7
+ E, principalmente, centralizar a complexidade e a “inteligência” de tracking **fora dos repositórios das lojas**.
8
+
9
+ ---
10
+
11
+ ## Fluxo do Tracking
12
+
13
+ O pacote segue o seguinte fluxo de eventos:
14
+
15
+ 1. **User Action**
16
+ Ações do usuário na loja (ex: adicionar ao carrinho, iniciar checkout, finalizar compra).
17
+
18
+ 2. **Tracks**
19
+ Ponto central que recebe o contexto do evento vindo da ação do usuário e encaminha para o *Formatter*.
20
+
21
+ 3. **Formatter**
22
+ Acessa a constante `EVENTS` e, baseado no contexto do evento, puxa os parâmetros obrigatórios e entrega a biblioteca de parâmetros (`/params`).
23
+
24
+ 4. **Params Library**
25
+ Contém **getters** e **resolvers** que garantem que os dados sejam legítimos e que todos os parâmetros sejam corretamente tratados.
26
+
27
+ 5. **Adapters**
28
+ Módulos responsáveis por enviar os dados formatados para cada destino (Meta, Datalayer, Dito, etc).
29
+
30
+ ![FLUXOGRAMA](/public/fluxograma-lib-params.png)
31
+
32
+ ## Instalação
33
+
34
+
35
+ ```bash
36
+ npm install /path/azzas-tracker-web
37
+ ```
38
+
39
+
40
+ ## Exemplos
41
+
42
+ Listagem dos `EVENTS` e função orquestradora `trackWebEvent`:
43
+ ```javascript
44
+ const EVENTS = {
45
+ ADD_PERSONAL_INFO: {
46
+ name: 'add_personal_info',
47
+ destinations: ['DataLayer'],
48
+ requiredParams: ['brand', 'pre_filled', 'currency', 'value', 'subtotal'],
49
+ },
50
+ VIEW_CART: {
51
+ name: 'add_personal_info',
52
+ destinations: ['DataLayer', 'Meta', 'Dito'],
53
+ requiredParams: ['....'],
54
+ }
55
+ }
56
+
57
+ export async function trackWebEvent(event: EventName, context: EventContext = {}) {
58
+ try {
59
+ const parameters = await getParameters(context, event);
60
+ return await dispatchTrackEvent(event, parameters);
61
+ } catch (err) {
62
+ return console.error(`[DT] Error tracking event ${event}:`, err);
63
+ }
64
+ }
65
+ ```
66
+
67
+ Uso básico da função no consumidor:
68
+
69
+
70
+ ```javascript
71
+ import { trackWebEvent } from 'azzas-tracker-web';
72
+
73
+ // DATA TRACKING | add_personal_info at submit (pre-filled always false)
74
+ // @see notion document for more details:
75
+ const form: Element = document.querySelector('xxxxxx');
76
+ if (form) {
77
+ form.addEventListener('submit', () => {
78
+ trackWebEvent('ADD_PERSONAL_INFO', { preFilled: false, orderForm: vtexjs.checkout.orderForm });
79
+ });
80
+ }
81
+ ```
82
+
83
+ ***OBS***: atente-se ao adicionar eventos novos e contribua na documentação do NOTION ou apenas DOCUMENTE em algum lugar! Seu futuro EU será grato 👍
84
+
85
+ ## Teste Local para Ambientes CDN/DENO
86
+
87
+ Para testar alterações na biblioteca localmente, simulando a forma como ela é carregada por uma CDN (<script src="...">), use o script npm run dev:deno.
88
+
89
+ Este comando realiza o build mais recente da biblioteca, empacota-o e inicia um servidor HTTP local usando o Deno para servir o arquivo
90
+
91
+ 1. Aqui nesse repositório, rode o script que inicia o servidor local:
92
+
93
+ ```bash
94
+ npm run dev:deno
95
+ ```
96
+
97
+ O servidor será iniciado e começará a servir o seu arquivo de build no seguinte endereço: http://localhost:4507/.
98
+
99
+ 2. No Projeto Consumidor (DENO/FRONT):
100
+
101
+ Altere o link do <script> no seu projeto para apontar para o servidor local.
102
+
103
+ Você deve usar: <script src="http://localhost:4507/dist/mod.global.js"></script>
104
+
105
+
106
+ ## Boas Práticas
107
+ - Sempre garantir que os `requiredParams` de cada evento estejam preenchidos antes de enviar.
108
+
109
+ - Procure sempre manter o envio das ações de usuário o mais ***genérico*** possível. Toda a inteligência e complexidade do tratamento dos dados deve ficar centralizada na lib, e não nos repositórios das lojas.
110
+
111
+ - Usar nomes de eventos semânticos e consistentes (ex: VIEW_CART, ADD_PAYMENT_INFO).
112
+
113
+ - Manter os contextos enxutos, enviando apenas dados realmente necessários.
114
+
115
+ - Cada novo evento deve ser registrado em `EVENTS` com seus destinos e parâmetros obrigatórios. Essa constante talvez venha a ser dinâmica dependendo da MARCA utilizada
116
+
117
+
118
+ ## Contribuição
119
+
120
+ - Adicionar novos eventos em `EVENTS`.
121
+
122
+ - Criar adapter correspondente caso seja necessário integrar com nova plataforma. Nesse caso deve-se avaliar qual será o serviço feito, o que será consumido, para onde será enviado.
123
+
124
+ - Garantir que todos os parâmetros obrigatórios estejam mapeados nos getters/resolvers.
125
+
126
+ - Executar build (npm run build) antes de testar no checkout/loja.
127
+
128
+ ## Authors
129
+
130
+ - Lucas Soares
package/dist/mod.cjs CHANGED
@@ -424,7 +424,32 @@ async function getItemSku(item) {
424
424
  return (_b = (_a = product[0].items.find((i) => i.name === item.skuName)) == null ? void 0 : _a.itemId) != null ? _b : null;
425
425
  }
426
426
  function getDiscount(item) {
427
- return item.discount || item.discount === 0 ? item.discount : parseFloat(Math.max(item.listPrice - item.sellingPrice, 0).toFixed(2)) / 100 || 0;
427
+ const strategies = [
428
+ // 1. listPrice - sellingPrice
429
+ () => {
430
+ if ((item == null ? void 0 : item.listPrice) != null && (item == null ? void 0 : item.sellingPrice) != null) {
431
+ const diff = Math.max(item.listPrice - item.sellingPrice, 0);
432
+ return diff ? parseFloat((diff / 100).toFixed(2)) : 0;
433
+ }
434
+ return null;
435
+ },
436
+ // 2. listPrice - price
437
+ () => {
438
+ if ((item == null ? void 0 : item.listPrice) != null && (item == null ? void 0 : item.price) != null) {
439
+ return Math.max(item.listPrice - item.price, 0);
440
+ }
441
+ return null;
442
+ },
443
+ // 3. desconto calculado.
444
+ () => (item == null ? void 0 : item.discount) || (item == null ? void 0 : item.discount) === 0 ? item.discount : null
445
+ ];
446
+ for (const getValue of strategies) {
447
+ const value = getValue();
448
+ if (value !== null && value !== void 0) {
449
+ return value;
450
+ }
451
+ }
452
+ return 0;
428
453
  }
429
454
  function getItemCategory(item) {
430
455
  const strategies = [
@@ -434,7 +459,19 @@ function getItemCategory(item) {
434
459
  },
435
460
  () => item == null ? void 0 : item.item_category,
436
461
  () => item == null ? void 0 : item.category,
437
- () => item == null ? void 0 : item.categories[0]
462
+ () => item == null ? void 0 : item.categories[0],
463
+ () => {
464
+ var _a, _b;
465
+ const breadcrumb = (_b = (_a = item == null ? void 0 : item.itemOffered) == null ? void 0 : _a.breadcrumbList) == null ? void 0 : _b.itemListElement;
466
+ if (!Array.isArray(breadcrumb)) return null;
467
+ const level1 = breadcrumb.find((el) => {
468
+ const path = el == null ? void 0 : el.item;
469
+ if (!path) return false;
470
+ const parts = path.replace(/^\/|\/$/g, "").split("/");
471
+ return parts.length === 1;
472
+ });
473
+ return (level1 == null ? void 0 : level1.name) || null;
474
+ }
438
475
  ];
439
476
  for (const getValue of strategies) {
440
477
  const value = getValue();
@@ -458,8 +495,9 @@ function getItemCategory2(item) {
458
495
  return (_e = (_d = (_c = (_b = (_a = item == null ? void 0 : item.category) == null ? void 0 : _a.split) == null ? void 0 : _b.call(_a, ">")) == null ? void 0 : _c[1]) == null ? void 0 : _d.trim) == null ? void 0 : _e.call(_d);
459
496
  },
460
497
  // deco select_item context
461
- () => item.item_category2
498
+ () => item.item_category2,
462
499
  // deco add_to_cart context PDP
500
+ () => item == null ? void 0 : item.subGrup
463
501
  ];
464
502
  for (const getValue of strategies) {
465
503
  const value = getValue();
@@ -575,24 +613,24 @@ async function itemsFromOrderForm(context) {
575
613
 
576
614
  // src/params/resolvers/items/fromItem.ts
577
615
  async function itemsFromItem(context, event) {
578
- var _a, _b, _c, _d, _e, _f;
616
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m;
579
617
  const { item, orderForm, itemListName } = context;
580
618
  return [
581
619
  {
582
620
  index: typeof (item == null ? void 0 : item.index) === "number" ? item.index : null,
583
621
  quantity: 1,
584
- item_id: (item == null ? void 0 : item.productId) || (item == null ? void 0 : item.item_group_id) || (item == null ? void 0 : item.sku) || null,
622
+ item_id: (item == null ? void 0 : item.productId) || (item == null ? void 0 : item.item_group_id) || (item == null ? void 0 : item.sku) || (item == null ? void 0 : item.id) || null,
585
623
  item_category2: getItemCategory2(item),
586
624
  item_category4: getItemCategory4(item),
587
625
  item_shipping_tier: event === "REMOVE_FROM_CART" ? getItemShippingTier(orderForm, item) : null,
588
626
  price: (item == null ? void 0 : item.listPrice) || (item == null ? void 0 : item.price) || 0,
589
- item_ref: (item == null ? void 0 : item.ref) || (item == null ? void 0 : item.refId) || (item == null ? void 0 : item.item_ref) || ((_a = item == null ? void 0 : item.additionalProperty) == null ? void 0 : _a.find((i) => i.name === "RefId").value) || null,
590
- item_brand: ((_b = item == null ? void 0 : item.additionalInfo) == null ? void 0 : _b.brandName) || (item == null ? void 0 : item.item_brand) || ((_c = item == null ? void 0 : item.brand) == null ? void 0 : _c.name) || null,
591
- item_sku: (item == null ? void 0 : item.sku) || (item == null ? void 0 : item.id) || (item == null ? void 0 : item.item_id) || await getItemSku(item) || null,
592
- item_name: (item == null ? void 0 : item.name) || (item == null ? void 0 : item.item_name) || null,
627
+ item_ref: (item == null ? void 0 : item.ref) || (item == null ? void 0 : item.refId) || (item == null ? void 0 : item.item_ref) || ((_a = item == null ? void 0 : item.additionalProperty) == null ? void 0 : _a.find((i) => i.name === "RefId").value) || ((_c = item == null ? void 0 : item.itemOffered) == null ? void 0 : _c.gtin.substring(0, (_b = item == null ? void 0 : item.itemOffered) == null ? void 0 : _b.gtin.lastIndexOf("_"))) || null,
628
+ item_brand: ((_d = item == null ? void 0 : item.additionalInfo) == null ? void 0 : _d.brandName) || (item == null ? void 0 : item.item_brand) || ((_e = item == null ? void 0 : item.brand) == null ? void 0 : _e.name) || ((_g = (_f = item == null ? void 0 : item.itemOffered) == null ? void 0 : _f.brand) == null ? void 0 : _g.name) || null,
629
+ item_sku: (item == null ? void 0 : item.sku) || ((_h = item == null ? void 0 : item.itemOffered) == null ? void 0 : _h.sku) || (item == null ? void 0 : item.item_id) || (item == null ? void 0 : item.id) || await getItemSku(item) || null,
630
+ item_name: (item == null ? void 0 : item.name) || (item == null ? void 0 : item.item_name) || ((_j = (_i = item == null ? void 0 : item.itemOffered) == null ? void 0 : _i.isVariantOf) == null ? void 0 : _j.name) || null,
593
631
  item_category: getItemCategory(item) || null,
594
- item_variant: ((item == null ? void 0 : item.skuName) || (item == null ? void 0 : item.item_variant) || (item == null ? void 0 : item.name)).split(/[-/]/)[0].trim() || null,
595
- item_variant2: (item == null ? void 0 : item.size) || ((_d = item == null ? void 0 : item.itemAttributes) == null ? void 0 : _d.size) || ((_f = (_e = (item == null ? void 0 : item.skuName) || (item == null ? void 0 : item.name)) == null ? void 0 : _e.split(/[-/]/).pop()) == null ? void 0 : _f.trim()) || null,
632
+ item_variant: ((item == null ? void 0 : item.skuName) || (item == null ? void 0 : item.item_variant) || (item == null ? void 0 : item.name) || (item == null ? void 0 : item.itemOffered.name)).split(/[-/]/)[0].trim() || null,
633
+ item_variant2: (item == null ? void 0 : item.size) || ((_k = item == null ? void 0 : item.itemAttributes) == null ? void 0 : _k.size) || ((_m = (_l = (item == null ? void 0 : item.skuName) || (item == null ? void 0 : item.name) || (item == null ? void 0 : item.itemOffered.name)) == null ? void 0 : _l.split(/[-/]/).pop()) == null ? void 0 : _m.trim()) || null,
596
634
  discount: getDiscount(item),
597
635
  item_list_name: itemListName || null,
598
636
  item_url: (item == null ? void 0 : item.item_url) || null
@@ -610,7 +648,7 @@ async function itemsFromList(context) {
610
648
  quantity: 1,
611
649
  item_ref: (item == null ? void 0 : item.ref) || (item == null ? void 0 : item.item_ref) || ((_e = item == null ? void 0 : item.referenceId) == null ? void 0 : _e[0].Value) || (item == null ? void 0 : item.productReference) || (item == null ? void 0 : item.additionalProperty.find((i) => i.name === "RefId").value) || null,
612
650
  index: typeof (context == null ? void 0 : context.index) === "number" ? context.index : Number(item == null ? void 0 : item.index),
613
- item_brand: item.isNotFarm ? item == null ? void 0 : item.item_brand : normalizeBrand((_f = item == null ? void 0 : item.brand) == null ? void 0 : _f.name) || normalizeBrand(context.brand) || normalizeBrand(item == null ? void 0 : item.item_brand) || null,
651
+ item_brand: (item == null ? void 0 : item.item_brand) ? item.item_brand : item.isNotFarm ? item == null ? void 0 : item.item_brand : normalizeBrand((_f = item == null ? void 0 : item.brand) == null ? void 0 : _f.name) || normalizeBrand(context.brand) || normalizeBrand(item == null ? void 0 : item.item_brand) || null,
614
652
  item_name: ((_g = item == null ? void 0 : item.productName) == null ? void 0 : _g.split(" - ").shift()) || ((_h = item == null ? void 0 : item.alternateName) == null ? void 0 : _h.split(" - ").shift()) || ((_i = item == null ? void 0 : item.item_name) == null ? void 0 : _i.split(" - ").shift()) || ((_k = (_j = item == null ? void 0 : item.seo) == null ? void 0 : _j.title) == null ? void 0 : _k.split(" - ").shift()) || null,
615
653
  item_category: getItemCategory(item) || null,
616
654
  item_variant: ((_m = (_l = item == null ? void 0 : item.name) == null ? void 0 : _l.split("-")) == null ? void 0 : _m[0].trim()) || (item == null ? void 0 : item.item_variant) || ((_o = (_n = item == null ? void 0 : item.productName) == null ? void 0 : _n.split("-")) == null ? void 0 : _o[1].trim()) || null,
@@ -932,14 +970,37 @@ var paramGetters = {
932
970
  }, 0);
933
971
  },
934
972
  shipping_tier: (context, eventName) => {
935
- var _a, _b, _c, _d;
973
+ var _a, _b, _c;
936
974
  const logistics = (_c = (_b = (_a = context == null ? void 0 : context.orderForm) == null ? void 0 : _a.shippingData) == null ? void 0 : _b.logisticsInfo) != null ? _c : [];
937
- const selected = logistics.find((item) => item.selectedSla);
938
- if (!selected) return null;
939
- const sla = (_d = selected.slas) == null ? void 0 : _d.find((s) => s.id === selected.selectedSla);
940
- if (!sla) return null;
941
- const { deliveryChannel, name, pickupStoreInfo } = sla;
942
- return deliveryChannel === "pickup-in-point" ? `retirada em loja${(pickupStoreInfo == null ? void 0 : pickupStoreInfo.friendlyName) ? `: ${pickupStoreInfo.friendlyName}` : ""}` : deliveryChannel === "delivery" ? `receba em casa${name ? `: ${name}` : ""}` : null;
975
+ const selectedSlas = logistics.map((item) => {
976
+ var _a2;
977
+ if (!item.selectedSla) return null;
978
+ return ((_a2 = item.slas) == null ? void 0 : _a2.find((sla) => sla.id === item.selectedSla)) || null;
979
+ }).filter(Boolean);
980
+ if (selectedSlas.length === 0) return null;
981
+ const uniqueTiers = Array.from(
982
+ new Map(
983
+ selectedSlas.map((sla) => {
984
+ var _a2;
985
+ const key = sla.deliveryChannel === "pickup-in-point" ? `pickup:${((_a2 = sla.pickupStoreInfo) == null ? void 0 : _a2.friendlyName) || sla.name || ""}` : `delivery:${sla.name || ""}`;
986
+ return [key, sla];
987
+ })
988
+ ).values()
989
+ );
990
+ const sortedTiers = uniqueTiers.sort((a, b) => {
991
+ var _a2, _b2;
992
+ const aOrder = a.deliveryChannel === "pickup-in-point" ? 0 : 1;
993
+ const bOrder = b.deliveryChannel === "pickup-in-point" ? 0 : 1;
994
+ if (aOrder !== bOrder) return aOrder - bOrder;
995
+ const aLabel = a.deliveryChannel === "pickup-in-point" ? ((_a2 = a.pickupStoreInfo) == null ? void 0 : _a2.friendlyName) || a.name || "" : a.name || "";
996
+ const bLabel = b.deliveryChannel === "pickup-in-point" ? ((_b2 = b.pickupStoreInfo) == null ? void 0 : _b2.friendlyName) || b.name || "" : b.name || "";
997
+ return aLabel.localeCompare(bLabel, "pt-BR");
998
+ });
999
+ const shippingTier = sortedTiers.map((sla) => {
1000
+ var _a2;
1001
+ return sla.deliveryChannel === "pickup-in-point" ? `retirada em loja${((_a2 = sla.pickupStoreInfo) == null ? void 0 : _a2.friendlyName) ? `: ${sla.pickupStoreInfo.friendlyName}` : ""}` : sla.deliveryChannel === "delivery" ? `receba em casa${sla.name ? `: ${sla.name}` : ""}` : null;
1002
+ }).filter(Boolean).join(", ");
1003
+ return shippingTier || null;
943
1004
  },
944
1005
  transaction_id: (context, eventName) => {
945
1006
  var _a, _b;