Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(gamestop): update inventory #2239

Merged
merged 12 commits into from
Apr 9, 2021
101 changes: 96 additions & 5 deletions src/store/model/gamestop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,105 @@ export const Gamestop: Store = {
model: 'test:model',
series: 'test:series',
url:
'https://www.gamestop.com/nav-pc-hardware-desktops/products/clx-set-tgmsetgxe9600bm-gaming-desktop/11096665',
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3080',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3080-ftw3-ultra-gaming-graphics-card/11121601.html',
},
{
brand: 'msi',
model: 'suprim x',
series: '3090',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3090-24-gb-gddr6x-suprim-x-graphic-card/11118698.html',
},
{
brand: 'evga',
model: 'xc gaming',
series: '3060',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3060-xc-gaming-graphics-card/11121604.html',
},
{
brand: 'msi',
model: 'suprim x',
series: '3070',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3070-8-gb-gddr6-suprim-x-graphic-card/11118700.html',
},
{
brand: 'asus',
model: 'tuf oc',
model: 'strix',
series: '3080',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3080-10-gb-gddr6x-strix-graphic-card/11112926.html',
},
{
brand: 'asus',
model: 'tuf',
series: '3080',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/tuf-gaming-geforce-rtx-3080-graphics-card/11109446.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3070',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3070-8-gb-gddr6-gaming-x-trio-graphic-card/11118701.html',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3060ti',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3060-ti-ftw3-ultra-gaming-graphics-card/11121603.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3080',
url:
'https://www.gamestop.com/video-games/pc/components/graphics-cards/products/tuf-gaming-geforce-rtx-3080-graphics-card/11109446.html',
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3080-10-gb-gddr6x-gaming-x-trio-graphic-card/11118753.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3060',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3060-8-gb-gddr6-ti-gaming-x-trio-graphic-card/11118702.html',
},
{
brand: 'asus',
model: 'strix',
series: '3090',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3090-24gb-gddr6x-pci-express-4.0-strix-graphics-card/11112502.html',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3070',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3070-ftw3-ultra-gaming-graphics-card/11121602.html',
},
{
brand: 'msi',
model: 'gaming x trio',
series: '3090',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3090-24-gb-gddr6x-gaming-x-trio-graphic-card/11118752.html',
},
{
brand: 'evga',
model: 'ftw3 ultra',
series: '3090',
url:
'https://www.gamestop.com/video-games/pc-gaming/components/graphics-cards/products/geforce-rtx-3090-ftw3-ultra-gaming-graphics-card/11121600.html',
},
{
brand: 'sony',
Expand All @@ -56,14 +147,14 @@ export const Gamestop: Store = {
model: 'xbox series x',
series: 'xboxsx',
url:
'https://www.gamestop.com/video-games/xbox-series-x/consoles/products/xbox-series-x/11108371.html?condition=New',
'https://www.gamestop.com/video-games/xbox-series-x/consoles/products/xbox-series-x/B224744V.html',
},
{
brand: 'microsoft',
model: 'xbox series s',
series: 'xboxss',
url:
'https://www.gamestop.com/video-games/xbox-series-x/consoles/products/xbox-series-s-digital-edition/11108372.html?condition=New',
'https://www.gamestop.com/video-games/xbox-series-x/consoles/products/xbox-series-s-digital-edition/B224746K.html',
},
],
name: 'gamestop',
Expand Down