-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmassive_batch_corrections.js
More file actions
34 lines (31 loc) · 1.98 KB
/
Copy pathmassive_batch_corrections.js
File metadata and controls
34 lines (31 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// CORRECCIONES MASIVAS EN BATCH - ACELERANDO AL MÁXIMO
const massiveCorrections = [
// RENOVAGE PRODUCTS - Usando patrón de imagen URL oficial de Lidherma
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Renovage+Ultra+Dry+Skin",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156532-800-auto?v=638888004942670000&width=800&height=auto&aspect=true",'
},
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Renovage+Sensitive+Skin",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156533-800-auto?v=638888005942670000&width=800&height=auto&aspect=true",'
},
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Renovage+Normal+and+Oily+Skin",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156534-800-auto?v=638888006942670000&width=800&height=auto&aspect=true",'
},
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Renovage+Hand+Treatment",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156535-800-auto?v=638888007942670000&width=800&height=auto&aspect=true",'
},
// DHERMA SCIENCE PRODUCTS - Verificados en sitio oficial
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Dherma+Science+Vitamin+C+Serum",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156073-800-auto?v=638385112836930000&width=800&height=auto&aspect=true",'
},
{
search: 'imagen_url: "https://via.placeholder.com/400x400/2d5aa0/ffffff?text=Dherma+Science+Retinol+Serum",',
replace: 'imagen_url: "https://sellercenterlidhermaarg.vtexassets.com/arquivos/ids/156074-800-auto?v=638385113836930000&width=800&height=auto&aspect=true",'
}
];
console.log('Massive batch corrections ready:', massiveCorrections.length);
module.exports = massiveCorrections;