mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 01:47:39 +00:00
c78d9a98ba
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
114 lines
2.1 KiB
TypeScript
114 lines
2.1 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const Amazon: Store = {
|
|
labels: {
|
|
captcha: {
|
|
container: 'body',
|
|
text: ['enter the characters you see below']
|
|
},
|
|
inStock: {
|
|
container: '#desktop_buybox',
|
|
text: ['add to cart']
|
|
}
|
|
},
|
|
links: [
|
|
{
|
|
brand: 'test:brand',
|
|
model: 'CARD',
|
|
series: 'test:series',
|
|
url: 'https://www.amazon.com/dp/B07MQ36Z6L'
|
|
},
|
|
{
|
|
brand: 'pny',
|
|
model: 'xlr8',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HBR7QBM'
|
|
},
|
|
{
|
|
brand: 'pny',
|
|
model: 'xlr8 rgb',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HBTJMLJ'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'gaming x trio',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR7SV3M'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'ftw3 ultra',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR3Y5GQ'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 ultra',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR55YB5'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'ftw3',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR3DPGW'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR4RJ3Q'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 black',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR6FMF3'
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'gaming oc',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HJTH61J'
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'eagle oc',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HJS2JLJ'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HH5WF97'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HHDP9DW'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'strix',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08J6F174Z'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 3x oc',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HR5SXPS'
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'trinity',
|
|
series: '3080',
|
|
url: 'https://www.amazon.com/dp/B08HJNKT3P'
|
|
}
|
|
],
|
|
name: 'amazon'
|
|
};
|