mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 14:37:41 +00:00
91 lines
1.9 KiB
TypeScript
91 lines
1.9 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const Otto: Store = {
|
|
currency: '€',
|
|
labels: {
|
|
inStock: [
|
|
{
|
|
container:
|
|
'button.prd_ordering__button.p_btn150--1st.js_product_addToBasket',
|
|
text: ['In den Warenkorb']
|
|
}
|
|
],
|
|
maxPrice: {
|
|
container: '#normalPriceAmount',
|
|
euroFormat: true
|
|
},
|
|
outOfStock: {
|
|
container: 'div.p_message.p_message--hint > strong',
|
|
text: [
|
|
'Deinen gewünschten Artikel können wir leider nicht mehr liefern'
|
|
]
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.otto.de/p/playstation-5-medienfernbedienung-1170617135#variationId=1170617136'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
labels: {
|
|
inStock: {
|
|
container:
|
|
'.js_shortInfo__variationName.prd_shortInfo__variationName',
|
|
text: ['konsole']
|
|
}
|
|
},
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url:
|
|
'https://www.otto.de/p/playstation-5-1136008456/#variationId=1136008459'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
labels: {
|
|
inStock: {
|
|
container:
|
|
'.js_shortInfo__variationName.prd_shortInfo__variationName',
|
|
text: ['konsole']
|
|
}
|
|
},
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url:
|
|
'https://www.otto.de/p/playstation-5-1154028000#variationId=1154028001'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
labels: {
|
|
inStock: {
|
|
container:
|
|
'.js_shortInfo__variationName.prd_shortInfo__variationName',
|
|
text: ['konsole']
|
|
}
|
|
},
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url:
|
|
'https://www.otto.de/p/playstation-5-digital-edition-1161042793#variationId=1161042794'
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series s',
|
|
series: 'xboxss',
|
|
url:
|
|
'https://www.otto.de/p/xbox-series-s-1229056876/#variationId=1229056877'
|
|
},
|
|
{
|
|
brand: 'microsoft',
|
|
model: 'xbox series x',
|
|
series: 'xboxsx',
|
|
url:
|
|
'https://www.otto.de/p/xbox-series-x-1229057353#variationId=1229057354'
|
|
}
|
|
],
|
|
name: 'otto'
|
|
};
|