@azzas/azzas-tracker-web 2.0.0-preview.8 → 2.0.0-preview.9
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 -5
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.d.cts +4 -0
- package/dist/mod.d.ts +4 -0
- package/dist/mod.global.js +5 -5
- package/dist/mod.global.js.map +1 -1
- package/dist/mod.js +5 -5
- package/dist/mod.js.map +1 -1
- package/dist/mod.vtex.global.js +5 -5
- package/package.json +1 -1
package/dist/mod.d.cts
CHANGED
|
@@ -1435,6 +1435,10 @@ interface TrackMeta {
|
|
|
1435
1435
|
type?: string;
|
|
1436
1436
|
item_ref?: string;
|
|
1437
1437
|
size?: string;
|
|
1438
|
+
color?: string;
|
|
1439
|
+
ordering?: string;
|
|
1440
|
+
price_range?: string;
|
|
1441
|
+
category?: string;
|
|
1438
1442
|
search_term?: string;
|
|
1439
1443
|
search_found?: boolean;
|
|
1440
1444
|
search_quantity?: number;
|
package/dist/mod.d.ts
CHANGED
|
@@ -1435,6 +1435,10 @@ interface TrackMeta {
|
|
|
1435
1435
|
type?: string;
|
|
1436
1436
|
item_ref?: string;
|
|
1437
1437
|
size?: string;
|
|
1438
|
+
color?: string;
|
|
1439
|
+
ordering?: string;
|
|
1440
|
+
price_range?: string;
|
|
1441
|
+
category?: string;
|
|
1438
1442
|
search_term?: string;
|
|
1439
1443
|
search_found?: boolean;
|
|
1440
1444
|
search_quantity?: number;
|
package/dist/mod.global.js
CHANGED
|
@@ -1071,7 +1071,7 @@ var AzzasTracker = (() => {
|
|
|
1071
1071
|
"store": "https://www.animale.com.br",
|
|
1072
1072
|
"checkout": "https://secure.animale.com.br"
|
|
1073
1073
|
},
|
|
1074
|
-
"
|
|
1074
|
+
"lojafarm": {
|
|
1075
1075
|
"store": "https://lojafarm.myvtex.com"
|
|
1076
1076
|
},
|
|
1077
1077
|
"mariafilo": {
|
|
@@ -1089,7 +1089,7 @@ var AzzasTracker = (() => {
|
|
|
1089
1089
|
"bynv": {
|
|
1090
1090
|
"store": "https://bynv.myvtex.com"
|
|
1091
1091
|
},
|
|
1092
|
-
"
|
|
1092
|
+
"lojafabula": {
|
|
1093
1093
|
"store": "https://lojafabula.myvtex.com"
|
|
1094
1094
|
}
|
|
1095
1095
|
};
|
|
@@ -1393,9 +1393,6 @@ var AzzasTracker = (() => {
|
|
|
1393
1393
|
creative_slot: (context) => {
|
|
1394
1394
|
return context.meta.creative_slot || null;
|
|
1395
1395
|
},
|
|
1396
|
-
size: (context) => {
|
|
1397
|
-
return context.size || null;
|
|
1398
|
-
},
|
|
1399
1396
|
item_ref: (context) => {
|
|
1400
1397
|
return context.itemRef || null;
|
|
1401
1398
|
},
|
|
@@ -1416,6 +1413,9 @@ var AzzasTracker = (() => {
|
|
|
1416
1413
|
},
|
|
1417
1414
|
ordering: (context) => {
|
|
1418
1415
|
return context.meta.ordering || null;
|
|
1416
|
+
},
|
|
1417
|
+
size: (context) => {
|
|
1418
|
+
return context.meta.size || null;
|
|
1419
1419
|
}
|
|
1420
1420
|
};
|
|
1421
1421
|
|