feat(store): add johnlewis store, add shopto store (#1481)

* add `johnlewis` store

* feat: add `shopto` store

* chore: linting

* chore: linting

Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
James Hinton
2020-12-20 23:00:00 +00:00
committed by GitHub
parent 7a5bc22ba8
commit ec8d3571cf
4 changed files with 69 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import {Store} from './store';
export const JohnLewis: Store = {
currency: '£',
labels: {
inStock: {
container: '#button--add-to-basket',
text: ['Add to your basket']
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url:
'https://www.johnlewis.com/sony-playstation-5-dualsense-wireless-controller-white/p5192093'
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url:
'https://www.johnlewis.com/sony-playstation-5-console-with-dualsense-controller/white/p5115192'
}
],
name: 'johnlewis'
};