From 0a9ce0dd4c7681cba7681d570db44f65359d83cf Mon Sep 17 00:00:00 2001 From: Reid Kornman <76536916+Reid-Kornman@users.noreply.github.com> Date: Wed, 24 Mar 2021 23:04:22 -0400 Subject: [PATCH] chore(store): add Nvidia RTX Cards (#2204) --- src/store/model/amazon.ts | 8 ++++++++ src/store/model/bestbuy.ts | 14 ++++++++++++++ src/store/model/pny.ts | 14 ++++++++++++++ src/store/model/store.ts | 1 + src/store/model/walmart.ts | 12 ++++++++++++ 5 files changed, 49 insertions(+) diff --git a/src/store/model/amazon.ts b/src/store/model/amazon.ts index 03c5bb3145..a94f58e480 100644 --- a/src/store/model/amazon.ts +++ b/src/store/model/amazon.ts @@ -256,6 +256,14 @@ export const Amazon: Store = { series: '3070', url: 'https://www.amazon.com/dp/B08L8L71SM', }, + { + brand: 'evga', + cartUrl: + 'https://www.amazon.com/gp/aws/cart/add.html?ASIN.1=B08WM28PVH&Quantity.1=1', + model: 'xc gaming', + series: '3060', + url: 'https://www.amazon.com/dp/B08WM28PVH', + }, { brand: 'evga', cartUrl: diff --git a/src/store/model/bestbuy.ts b/src/store/model/bestbuy.ts index fb6bf2ad3d..e1c0b78a01 100644 --- a/src/store/model/bestbuy.ts +++ b/src/store/model/bestbuy.ts @@ -474,6 +474,20 @@ export const BestBuy: Store = { series: '3060ti', url: 'https://api.bestbuy.com/click/-/6444449/pdp', }, + { + brand: 'pny', + cartUrl: 'https://api.bestbuy.com/click/-/6454319/cart', + model: 'dual fan', + series: '3060', + url: 'https://api.bestbuy.com/click/-/6454319/pdp', + }, + { + brand: 'pny', + cartUrl: 'https://api.bestbuy.com/click/-/6454318/cart', + model: 'single fan', + series: '3060', + url: 'https://api.bestbuy.com/click/-/6454318/pdp', + }, ], name: 'bestbuy', }; diff --git a/src/store/model/pny.ts b/src/store/model/pny.ts index bf0c8c0460..a96bfc80a6 100644 --- a/src/store/model/pny.ts +++ b/src/store/model/pny.ts @@ -19,6 +19,20 @@ export const Pny: Store = { series: 'test:series', url: 'https://www.pny.com/pny-geforce-gtx-1660-super-gaming-oc-sf', }, + { + brand: 'pny', + model: 'dual fan', + series: '3060', + url: + 'https://www.pny.com/geforce-rtx-3060-12gb-xlr8-gaming-revel-epic-x-rgb-df', + }, + { + brand: 'pny', + model: 'single fan', + series: '3060', + url: + 'https://www.pny.com/pny-geforce-rtx-3060-12gb-xlr8-gaming-revel-epic-x-rgb-sf', + }, { brand: 'pny', model: 'dual fan', diff --git a/src/store/model/store.ts b/src/store/model/store.ts index a0265dd7e0..ee346c3d62 100644 --- a/src/store/model/store.ts +++ b/src/store/model/store.ts @@ -138,6 +138,7 @@ export type Model = | 'sg oc' | 'sg' | 'merc' + | 'single fan' | 'strix lc' | 'strix oc' | 'strix' diff --git a/src/store/model/walmart.ts b/src/store/model/walmart.ts index 9729ce2f90..36dada0f41 100644 --- a/src/store/model/walmart.ts +++ b/src/store/model/walmart.ts @@ -64,6 +64,18 @@ export const Walmart: Store = { url: 'https://www.walmart.com/ip/AMD-Ryzen-9-5900X-12-core-24-thread-Desktop-Processor/647899167', }, + { + brand: 'evga', + model: 'ftw3 ultra', + series: '3060ti', + url: 'https://www.walmart.com/ip/912221235', + }, + { + brand: 'evga', + model: 'ftw3 ultra', + series: '3070', + url: 'https://www.walmart.com/ip/804934537', + }, ], name: 'walmart', };