mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 05:17:35 +00:00
feat(bestbuy): add 3060 series (#1074)
This commit is contained in:
@@ -17,6 +17,7 @@ HEADLESS=""
|
|||||||
IN_STOCK_WAIT_TIME=""
|
IN_STOCK_WAIT_TIME=""
|
||||||
LOG_LEVEL=""
|
LOG_LEVEL=""
|
||||||
LOW_BANDWIDTH=""
|
LOW_BANDWIDTH=""
|
||||||
|
MAX_PRICE_SERIES_3060=""
|
||||||
MAX_PRICE_SERIES_3070=""
|
MAX_PRICE_SERIES_3070=""
|
||||||
MAX_PRICE_SERIES_3080=""
|
MAX_PRICE_SERIES_3080=""
|
||||||
MAX_PRICE_SERIES_3090=""
|
MAX_PRICE_SERIES_3090=""
|
||||||
|
|||||||
@@ -307,6 +307,7 @@ const store = {
|
|||||||
country: envOrString(process.env.COUNTRY, 'usa'),
|
country: envOrString(process.env.COUNTRY, 'usa'),
|
||||||
maxPrice: {
|
maxPrice: {
|
||||||
series: {
|
series: {
|
||||||
|
3060: envOrNumber(process.env.MAX_PRICE_SERIES_3060),
|
||||||
3070: envOrNumber(process.env.MAX_PRICE_SERIES_3070),
|
3070: envOrNumber(process.env.MAX_PRICE_SERIES_3070),
|
||||||
3080: envOrNumber(process.env.MAX_PRICE_SERIES_3080),
|
3080: envOrNumber(process.env.MAX_PRICE_SERIES_3080),
|
||||||
3090: envOrNumber(process.env.MAX_PRICE_SERIES_3090),
|
3090: envOrNumber(process.env.MAX_PRICE_SERIES_3090),
|
||||||
@@ -335,6 +336,7 @@ const store = {
|
|||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
showOnlySeries: envOrArray(process.env.SHOW_ONLY_SERIES, [
|
showOnlySeries: envOrArray(process.env.SHOW_ONLY_SERIES, [
|
||||||
|
'3060',
|
||||||
'3070',
|
'3070',
|
||||||
'3080',
|
'3080',
|
||||||
'3090',
|
'3090',
|
||||||
|
|||||||
@@ -421,6 +421,38 @@ export const BestBuy: Store = {
|
|||||||
series: 'sf',
|
series: 'sf',
|
||||||
url:
|
url:
|
||||||
'https://www.bestbuy.com/site/corsair-sf-series-600w-atx12v-2-4-eps12v-2-92-sfx12v-80-plus-platinum-modular-power-supply-black/6351844.p?skuId=6351844'
|
'https://www.bestbuy.com/site/corsair-sf-series-600w-atx12v-2-4-eps12v-2-92-sfx12v-80-plus-platinum-modular-power-supply-black/6351844.p?skuId=6351844'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'nvidia',
|
||||||
|
cartUrl: 'https://api.bestbuy.com/click/-/6439402/cart',
|
||||||
|
model: 'founders edition',
|
||||||
|
series: '3060',
|
||||||
|
url:
|
||||||
|
'https://www.bestbuy.com/site/nvidia-geforce-rtx-3060-ti-8gb-gddr6-pci-express-4-0-graphics-card-steel-and-black/6439402.p?skuId=6439402&intl=nosplash'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'gigabyte',
|
||||||
|
cartUrl: 'https://api.bestbuy.com/click/-/6442484/cart',
|
||||||
|
model: 'gaming oc',
|
||||||
|
series: '3060',
|
||||||
|
url:
|
||||||
|
'https://www.bestbuy.com/site/gigabyte-nvidia-geforce-rtx-3060-ti-gaming-oc-8g-gddr6-pci-express-4-0-graphics-card-black/6442484.p?skuId=6442484&intl=nosplash'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'gigabyte',
|
||||||
|
cartUrl: 'https://api.bestbuy.com/click/-/6442485/cart',
|
||||||
|
model: 'eagle oc',
|
||||||
|
series: '3060',
|
||||||
|
url:
|
||||||
|
'https://www.bestbuy.com/site/gigabyte-nvidia-geforce-rtx-3060-ti-eagle-oc-8g-gddr6-pci-express-4-0-graphics-card-black/6442485.p?skuId=6442485&intl=nosplash'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
brand: 'msi',
|
||||||
|
cartUrl: 'https://api.bestbuy.com/click/-/6441172/cart',
|
||||||
|
model: 'ventus 2x oc',
|
||||||
|
series: '3060',
|
||||||
|
url:
|
||||||
|
'https://www.bestbuy.com/site/msi-geforce-rtx-3060-ti-ventus-2x-oc-bv-8gb-gddr6-pci-express-4-0-graphics-card-black-black/6441172.p?skuId=6441172&intl=nosplash'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
name: 'bestbuy'
|
name: 'bestbuy'
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ export type Brand =
|
|||||||
|
|
||||||
export type Series =
|
export type Series =
|
||||||
| 'test:series'
|
| 'test:series'
|
||||||
|
| '3060'
|
||||||
| '3070'
|
| '3070'
|
||||||
| '3080'
|
| '3080'
|
||||||
| '3090'
|
| '3090'
|
||||||
|
|||||||
Reference in New Issue
Block a user