mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 14:37:41 +00:00
42 lines
749 B
TypeScript
42 lines
749 B
TypeScript
import {Store} from './store';
|
|
|
|
export const GamestopDE: Store = {
|
|
currency: '€',
|
|
labels: {
|
|
inStock: [
|
|
{
|
|
container: '#btnAddToCart',
|
|
text: ['In den Warenkorb']
|
|
},
|
|
{
|
|
container: '#btnAddToCart',
|
|
text: ['Vorbestellen']
|
|
}
|
|
],
|
|
maxPrice: {
|
|
container: '.buySection .prodPriceCont',
|
|
euroFormat: true
|
|
},
|
|
outOfStock: {
|
|
container: '.megaButton',
|
|
text: ['Nicht verfügbar']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url: 'https://www.gamestop.de/PS5/Games/58665'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url: 'https://www.gamestop.de/PS5/Games/60315'
|
|
}
|
|
],
|
|
name: 'gamestop-de',
|
|
successStatusCodes: [[0, 399], 404]
|
|
};
|