mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 08:47:43 +00:00
5bbdfa2abc
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
43 lines
1.0 KiB
TypeScript
43 lines
1.0 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const SmythsToys: Store = {
|
|
labels: {
|
|
inStock: {
|
|
container: '#addToCartButton',
|
|
text: ['add to basket']
|
|
},
|
|
maxPrice: {
|
|
container: '.price_tag',
|
|
euroFormat: false
|
|
},
|
|
outOfStock: {
|
|
container: '.instoreMessage',
|
|
text: ['out of stock']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'test:model',
|
|
series: 'test:series',
|
|
url:
|
|
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/video-games/call-of-duty-video-games/call-of-duty-black-ops-cold-war/call-of-duty-black-ops-cold-war-ps5/p/191951'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 console',
|
|
series: 'sonyps5c',
|
|
url:
|
|
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/playstation-5/playstation-5-consoles/playstation-5-console/p/191259'
|
|
},
|
|
{
|
|
brand: 'sony',
|
|
model: 'ps5 digital',
|
|
series: 'sonyps5de',
|
|
url:
|
|
'https://www.smythstoys.com/uk/en-gb/video-games-and-tablets/playstation-5/playstation-5-consoles/playstation-5-digital-edition-console/p/191430'
|
|
}
|
|
],
|
|
name: 'smythstoys'
|
|
};
|