Files
streetmerchant/src/store/model/adorama.ts
T
Jef LeCompte d19dd5a404 refactor!: removed duplicated Model
Signed-off-by: Jef LeCompte <jeffreylec@gmail.com>
2020-11-10 17:50:43 -05:00

130 lines
2.5 KiB
TypeScript

import {Store} from './store';
export const Adorama: Store = {
labels: {
captcha: {
container: 'body',
text: ['please verify you are a human']
},
inStock: {
container: '.buy-section.purchase',
text: ['add to cart']
},
maxPrice: {
container: '.your-price',
euroFormat: false
}
},
links: [
{
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://www.adorama.com/ev08gp43067k.html'
},
{
brand: 'pny',
model: 'xlr8 revel',
series: '3080',
url: 'https://www.adorama.com/pnv301tfxmpb.html'
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3080',
url: 'https://www.adorama.com/msig380gxt1.html'
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3080',
url: 'https://www.adorama.com/ev10g53897kr.html'
},
{
brand: 'evga',
model: 'xc3 ultra',
series: '3080',
url: 'https://www.adorama.com/ev10g53885kr.html'
},
{
brand: 'evga',
model: 'ftw3',
series: '3080',
url: 'https://www.adorama.com/ev10g53895kr.html'
},
{
brand: 'evga',
model: 'xc3',
series: '3080',
url: 'https://www.adorama.com/ev10g53883kr.html'
},
{
brand: 'evga',
model: 'xc3 black',
series: '3080',
url: 'https://www.adorama.com/ev10g53881kr.html'
},
{
brand: 'msi',
model: 'ventus 3x oc',
series: '3080',
url: 'https://www.adorama.com/msig38v3x10c.html'
},
{
brand: 'pny',
model: 'xlr8 revel',
series: '3080',
url: 'https://www.adorama.com/png30801tfxb.html'
},
{
brand: 'asus',
model: 'strix oc',
series: '3080',
url: 'https://www.adorama.com/asrx3080o10g.html'
},
{
brand: 'asus',
model: 'tuf oc',
series: '3080',
url: 'https://www.adorama.com/astr3080o10g.html'
},
{
brand: 'asus',
model: 'tuf',
series: '3080',
url: 'https://www.adorama.com/astrx308010g.html'
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3090',
url: 'https://www.adorama.com/msig390gxt24.html'
},
{
brand: 'msi',
model: 'ventus 3x oc',
series: '3090',
url: 'https://www.adorama.com/msig39v3x24c.html'
},
{
brand: 'asus',
model: 'tuf',
series: '3090',
url: 'https://www.adorama.com/asrtx309024g.html'
},
{
brand: 'asus',
model: 'tuf oc',
series: '3090',
url: 'https://www.adorama.com/ast3090o24g.html'
},
{
brand: 'asus',
model: 'strix oc',
series: '3090',
url: 'https://www.adorama.com/asrx3090o24g.html'
}
],
name: 'adorama'
};