mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 05:17:35 +00:00
97 lines
2.5 KiB
TypeScript
97 lines
2.5 KiB
TypeScript
import {Store} from './store';
|
|
|
|
export const NewEgg: Store = {
|
|
links: [
|
|
{
|
|
brand: 'TEST',
|
|
model: 'CARD',
|
|
series: 'debug',
|
|
url: 'https://www.newegg.com/evga-geforce-rtx-2060-06g-p4-2066-kr/p/N82E16814487488',
|
|
cartUrl: 'https://api.bestbuy.com/click/-/6432445/cart'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/asus-geforce-rtx-3080-tuf-rtx3080-10g-gaming/p/N82E16814126453'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 black',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/evga-geforce-rtx-3080-10g-p5-3881-kr/p/N82E16814487522'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/evga-geforce-rtx-3080-10g-p5-3883-kr/p/N82E16814487521'
|
|
},
|
|
{
|
|
brand: 'evga',
|
|
model: 'xc3 ultra',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/evga-geforce-rtx-3080-10g-p5-3885-kr/p/N82E16814487520'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 3x',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/msi-geforce-rtx-3080-rtx-3080-ventus-3x-10g/p/N82E16814137600'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'ventus 3x oc',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/msi-geforce-rtx-3080-rtx-3080-ventus-3x-10g-oc/p/N82E16814137598'
|
|
},
|
|
{
|
|
brand: 'msi',
|
|
model: 'gaming x trio',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/msi-geforce-rtx-3080-rtx-3080-gaming-x-trio-10g/p/N82E16814137597'
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'gaming oc',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/gigabyte-geforce-rtx-3080-gv-n3080gaming-oc-10gd/p/N82E16814932329'
|
|
},
|
|
{
|
|
brand: 'gigabyte',
|
|
model: 'eagle oc',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/gigabyte-geforce-rtx-3080-gv-n3080eagle-oc-10gd/p/N82E16814932330'
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'trinity',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/zotac-geforce-rtx-3080-zt-a30800d-10p/p/N82E16814500502'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'rog strix',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/asus-geforce-rtx-3080-rog-strix-rtx3080-o10g-gaming/p/N82E16814126457'
|
|
},
|
|
{
|
|
brand: 'asus',
|
|
model: 'tuf oc',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/asus-geforce-rtx-3080-tuf-rtx3080-o10g-gaming/p/N82E16814126452'
|
|
},
|
|
{
|
|
brand: 'zotac',
|
|
model: 'trinity oc',
|
|
series: '3080',
|
|
url: 'https://www.newegg.com/zotac-geforce-rtx-3080-zt-t30800j-10p/p/N82E16814500504'
|
|
}
|
|
],
|
|
labels: {
|
|
captcha: ['are you a human?'],
|
|
outOfStock: ['auto notify', 'see similar items below']
|
|
},
|
|
name: 'newegg'
|
|
};
|