@azzas/azzas-tracker-web 2.0.0-preview.0 → 2.0.0-preview.2
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 +300 -171
- package/dist/mod.cjs.map +1 -1
- package/dist/mod.d.cts +24 -0
- package/dist/mod.d.ts +24 -0
- package/dist/mod.global.js +300 -171
- package/dist/mod.global.js.map +1 -1
- package/dist/mod.js +300 -171
- package/dist/mod.js.map +1 -1
- package/dist/mod.vtex.global.js +339 -210
- package/package.json +1 -1
package/dist/mod.d.cts
CHANGED
|
@@ -161,6 +161,18 @@ declare const EVENTS: {
|
|
|
161
161
|
destinations: string[];
|
|
162
162
|
requiredParams: string[];
|
|
163
163
|
};
|
|
164
|
+
REFINE_RESULTS: {
|
|
165
|
+
readonly name: "refine_results";
|
|
166
|
+
readonly hasEcommerce: false;
|
|
167
|
+
readonly destinations: readonly ["DataLayer"];
|
|
168
|
+
readonly requiredParams: readonly ["brand", "region", "color", "price_range", "size", "category", "ordering"];
|
|
169
|
+
};
|
|
170
|
+
GRID_SIZE: {
|
|
171
|
+
readonly name: "grid_size";
|
|
172
|
+
readonly hasEcommerce: false;
|
|
173
|
+
readonly destinations: readonly ["DataLayer"];
|
|
174
|
+
readonly requiredParams: readonly ["brand", "slot_per_line"];
|
|
175
|
+
};
|
|
164
176
|
};
|
|
165
177
|
type EventName$1 = keyof typeof EVENTS;
|
|
166
178
|
type RequiredParamsOf<E extends EventName$1> = typeof EVENTS[E]['requiredParams'][number];
|
|
@@ -1156,6 +1168,18 @@ declare const _default: {
|
|
|
1156
1168
|
destinations: string[];
|
|
1157
1169
|
requiredParams: string[];
|
|
1158
1170
|
};
|
|
1171
|
+
REFINE_RESULTS: {
|
|
1172
|
+
readonly name: "refine_results";
|
|
1173
|
+
readonly hasEcommerce: false;
|
|
1174
|
+
readonly destinations: readonly ["DataLayer"];
|
|
1175
|
+
readonly requiredParams: readonly ["brand", "region", "color", "price_range", "size", "category", "ordering"];
|
|
1176
|
+
};
|
|
1177
|
+
GRID_SIZE: {
|
|
1178
|
+
readonly name: "grid_size";
|
|
1179
|
+
readonly hasEcommerce: false;
|
|
1180
|
+
readonly destinations: readonly ["DataLayer"];
|
|
1181
|
+
readonly requiredParams: readonly ["brand", "slot_per_line"];
|
|
1182
|
+
};
|
|
1159
1183
|
};
|
|
1160
1184
|
};
|
|
1161
1185
|
|
package/dist/mod.d.ts
CHANGED
|
@@ -161,6 +161,18 @@ declare const EVENTS: {
|
|
|
161
161
|
destinations: string[];
|
|
162
162
|
requiredParams: string[];
|
|
163
163
|
};
|
|
164
|
+
REFINE_RESULTS: {
|
|
165
|
+
readonly name: "refine_results";
|
|
166
|
+
readonly hasEcommerce: false;
|
|
167
|
+
readonly destinations: readonly ["DataLayer"];
|
|
168
|
+
readonly requiredParams: readonly ["brand", "region", "color", "price_range", "size", "category", "ordering"];
|
|
169
|
+
};
|
|
170
|
+
GRID_SIZE: {
|
|
171
|
+
readonly name: "grid_size";
|
|
172
|
+
readonly hasEcommerce: false;
|
|
173
|
+
readonly destinations: readonly ["DataLayer"];
|
|
174
|
+
readonly requiredParams: readonly ["brand", "slot_per_line"];
|
|
175
|
+
};
|
|
164
176
|
};
|
|
165
177
|
type EventName$1 = keyof typeof EVENTS;
|
|
166
178
|
type RequiredParamsOf<E extends EventName$1> = typeof EVENTS[E]['requiredParams'][number];
|
|
@@ -1156,6 +1168,18 @@ declare const _default: {
|
|
|
1156
1168
|
destinations: string[];
|
|
1157
1169
|
requiredParams: string[];
|
|
1158
1170
|
};
|
|
1171
|
+
REFINE_RESULTS: {
|
|
1172
|
+
readonly name: "refine_results";
|
|
1173
|
+
readonly hasEcommerce: false;
|
|
1174
|
+
readonly destinations: readonly ["DataLayer"];
|
|
1175
|
+
readonly requiredParams: readonly ["brand", "region", "color", "price_range", "size", "category", "ordering"];
|
|
1176
|
+
};
|
|
1177
|
+
GRID_SIZE: {
|
|
1178
|
+
readonly name: "grid_size";
|
|
1179
|
+
readonly hasEcommerce: false;
|
|
1180
|
+
readonly destinations: readonly ["DataLayer"];
|
|
1181
|
+
readonly requiredParams: readonly ["brand", "slot_per_line"];
|
|
1182
|
+
};
|
|
1159
1183
|
};
|
|
1160
1184
|
};
|
|
1161
1185
|
|