diff --git a/src/config.ts b/src/config.ts index b44946f..22e63eb 100644 --- a/src/config.ts +++ b/src/config.ts @@ -72,7 +72,7 @@ const page = { const store = { country: process.env.COUNTRY ?? 'usa', showOnlyBrands: process.env.SHOW_ONLY_BRANDS ? process.env.SHOW_ONLY_BRANDS.split(',') : [], - showOnlySeries: process.env.SHOW_ONLY_SERIES ? process.env.SHOW_ONLY_SERIES.split(',') : ['3070', '3080', '3090'], + showOnlySeries: process.env.SHOW_ONLY_SERIES ? process.env.SHOW_ONLY_SERIES.split(',') : [], stores: process.env.STORES ? process.env.STORES.split(',') : ['nvidia'] }; diff --git a/src/store/model/adorama.ts b/src/store/model/adorama.ts index 9d25ca2..b256e22 100644 --- a/src/store/model/adorama.ts +++ b/src/store/model/adorama.ts @@ -10,7 +10,7 @@ export const Adorama: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.adorama.com/ev08gp43067k.html' }, diff --git a/src/store/model/amazon-ca.ts b/src/store/model/amazon-ca.ts index 624a632..c84722b 100644 --- a/src/store/model/amazon-ca.ts +++ b/src/store/model/amazon-ca.ts @@ -14,7 +14,7 @@ export const AmazonCa: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.amazon.ca/dp/B07PBLD2MX' }, diff --git a/src/store/model/amazon.ts b/src/store/model/amazon.ts index f6dc2c0..69a06c7 100644 --- a/src/store/model/amazon.ts +++ b/src/store/model/amazon.ts @@ -14,7 +14,7 @@ export const Amazon: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.amazon.com/dp/B07MQ36Z6L' }, diff --git a/src/store/model/asus.ts b/src/store/model/asus.ts index 41aab71..7cded40 100644 --- a/src/store/model/asus.ts +++ b/src/store/model/asus.ts @@ -10,7 +10,7 @@ export const Asus: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://store.asus.com/us/item/202003AM280000002/' }, diff --git a/src/store/model/bandh.ts b/src/store/model/bandh.ts index 494601c..75888af 100644 --- a/src/store/model/bandh.ts +++ b/src/store/model/bandh.ts @@ -10,7 +10,7 @@ export const BAndH: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.bhphotovideo.com/c/product/1452927-REG/evga_06g_p4_2063_kr_geforce_rtx_2060_xc.html' }, diff --git a/src/store/model/bestbuy-ca.ts b/src/store/model/bestbuy-ca.ts index fbc2093..be11d00 100644 --- a/src/store/model/bestbuy-ca.ts +++ b/src/store/model/bestbuy-ca.ts @@ -10,7 +10,7 @@ export const BestBuyCa: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.bestbuy.ca/en-ca/product/msi-nvidia-geforce-rtx-2060-super-gaming-x-8gb-gddr6-video-card/14419420?intl=nosplash' }, diff --git a/src/store/model/bestbuy.ts b/src/store/model/bestbuy.ts index 18605a1..9b9c4b5 100644 --- a/src/store/model/bestbuy.ts +++ b/src/store/model/bestbuy.ts @@ -10,7 +10,7 @@ export const BestBuy: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.bestbuy.com/site/nvidia-geforce-rtx-2060-super-8gb-gddr6-pci-express-graphics-card-black-silver/6361329.p?skuId=6361329&intl=nosplash' }, diff --git a/src/store/model/evga.ts b/src/store/model/evga.ts index bac2056..18b56b6 100644 --- a/src/store/model/evga.ts +++ b/src/store/model/evga.ts @@ -10,7 +10,7 @@ export const Evga: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.evga.com/products/product.aspx?pn=06G-P4-2065-KR' }, diff --git a/src/store/model/helpers/nvidia.ts b/src/store/model/helpers/nvidia.ts index e2a846a..8fdb44b 100644 --- a/src/store/model/helpers/nvidia.ts +++ b/src/store/model/helpers/nvidia.ts @@ -136,7 +136,7 @@ export function generateLinks(): Link[] { if (fe2060SuperId) { links.push({ brand: 'test:brand', - model: 'CARD', + model: 'test:model', openCartAction: generateOpenCartAction(fe2060SuperId, nvidiaLocale, drLocale, 'TEST CARD debug'), series: 'test:series', url: digitalRiverStockUrl(fe2060SuperId, drLocale) diff --git a/src/store/model/microcenter.ts b/src/store/model/microcenter.ts index 1d522bf..2c7ebba 100644 --- a/src/store/model/microcenter.ts +++ b/src/store/model/microcenter.ts @@ -10,7 +10,7 @@ export const MicroCenter: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.microcenter.com/product/618433/evga-geforce-rtx-2060-ko-ultra-overclocked-dual-fan-6gb-gddr6-pcie-30-graphics-card' }, diff --git a/src/store/model/newegg-ca.ts b/src/store/model/newegg-ca.ts index b199016..a20da7c 100644 --- a/src/store/model/newegg-ca.ts +++ b/src/store/model/newegg-ca.ts @@ -14,7 +14,7 @@ export const NewEggCa: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.newegg.ca/evga-geforce-rtx-2060-06g-p4-2066-kr/p/N82E16814487488' }, diff --git a/src/store/model/newegg.ts b/src/store/model/newegg.ts index 75f5f03..b423c3c 100644 --- a/src/store/model/newegg.ts +++ b/src/store/model/newegg.ts @@ -14,7 +14,7 @@ export const NewEgg: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.newegg.com/evga-geforce-rtx-2060-06g-p4-2066-kr/p/N82E16814487488' }, diff --git a/src/store/model/officedepot.ts b/src/store/model/officedepot.ts index 1a33b56..921eefe 100644 --- a/src/store/model/officedepot.ts +++ b/src/store/model/officedepot.ts @@ -14,7 +14,7 @@ export const OfficeDepot: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://www.officedepot.com/a/products/4652239/EVGA-GeForce-RTX-2060-Graphic-Card/' }, diff --git a/src/store/model/zotac.ts b/src/store/model/zotac.ts index a617cce..91aaa26 100644 --- a/src/store/model/zotac.ts +++ b/src/store/model/zotac.ts @@ -10,7 +10,7 @@ export const Zotac: Store = { links: [ { brand: 'test:brand', - model: 'CARD', + model: 'test:model', series: 'test:series', url: 'https://store.zotac.com/zotac-gaming-geforce-rtx-2060-twin-fan-zt-t20600f-10m' },