Skip to content

feat(store): add 3050 in topachat and materiel #2945

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

Merged
merged 4 commits into from
Feb 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,7 @@ const store = {
country: envOrString(process.env.COUNTRY, 'usa'),
maxPrice: {
series: {
3050: envOrNumber(process.env.MAX_PRICE_SERIES_3050),
3060: envOrNumber(process.env.MAX_PRICE_SERIES_3060),
'3060ti': envOrNumber(process.env.MAX_PRICE_SERIES_3060TI),
3070: envOrNumber(process.env.MAX_PRICE_SERIES_3070),
Expand Down
6 changes: 6 additions & 0 deletions src/store/model/materiel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,12 @@ export const Materiel: Store = {
series: '3060ti',
url: 'https://www.materiel.net/produit/202011160036.html',
},
{
brand: 'inno3d',
model: 'twin x2',
series: '3050',
url: 'https://www.materiel.net/produit/202201170090.html',
},
{
brand: 'kfa2',
model: 'sg oc',
Expand Down
3 changes: 3 additions & 0 deletions src/store/model/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export type Brand =
export type Series =
| 'test:series'
| 'captcha-deterrent'
| '3050'
| '3060'
| '3060ti'
| '3070'
Expand Down Expand Up @@ -166,6 +167,7 @@ export type Model =
| 'phantom gs'
| 'phoenix gs oc'
| 'phoenix gs'
| 'phoenix 8G (LHR)'
| 'phoenix'
| 'ps5 console'
| 'ps5 digital'
Expand Down Expand Up @@ -205,6 +207,7 @@ export type Model =
| 'ventus 2x'
| 'ventus 3x oc'
| 'ventus 3x'
| 'ventus 2X (LHR)'
| 'vision oc'
| 'vision'
| 'x3'
Expand Down
12 changes: 12 additions & 0 deletions src/store/model/topachat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ export const TopAchat: Store = {
series: '3090',
url: 'https://www.topachat.com/pages/detail2_cat_est_micro_puis_rubrique_est_wgfx_pcie_puis_ref_est_in20005199.html',
},
{
brand: 'asus',
model: 'phoenix 8G (LHR)',
series: '3050',
url: 'https://www.topachat.com/pages/detail2_cat_est_micro_puis_rubrique_est_wgfx_pcie_puis_ref_est_in20012486.html',
},
{
brand: 'gigabyte',
model: 'gaming oc',
Expand Down Expand Up @@ -216,6 +222,12 @@ export const TopAchat: Store = {
series: '3090',
url: 'https://www.topachat.com/pages/detail2_cat_est_micro_puis_rubrique_est_wgfx_pcie_puis_ref_est_in20005229.html',
},
{
brand: 'msi',
model: 'ventus 2X (LHR)',
series: '3050',
url: 'https://www.topachat.com/pages/detail2_cat_est_micro_puis_rubrique_est_wgfx_pcie_puis_ref_est_in20012331.html',
},
{
brand: 'palit',
model: 'gaming pro',
Expand Down