Skip to content

Commit

Permalink
chore(store): EBGames renamed to Gamestop (in Canada) (#2734)
Browse files Browse the repository at this point in the history
  • Loading branch information
richie256 committed Sep 8, 2021
1 parent af603c2 commit 4e77c67
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/reference/filter.md
Expand Up @@ -98,7 +98,6 @@ Used with the `STORES` variable.
| DComp | AU | `dcomp`|
| Drako | IT | `drako` |
| DustinHome | NO | `dustinhome-no` |
| EBGames | CA | `ebgames`|
| eBuyer | UK | `ebuyer`|
| El Corte Inglés | ES | `elcorteingles`|
| Eletronicamente | ES | `eletronicamente`|
Expand All @@ -117,6 +116,7 @@ Used with the `STORES` variable.
| Game | ES | `game-es`|
| Game | UK | `game`|
| Gamestop | US | `gamestop`|
| Gamestop | CA | `gamestop-ca`|
| Gamestop | DE | `gamestop-de`|
| Gamestop | IE | `gamestop-ie`|
| Gamestop | IT | `gamestop-it`|
Expand Down
14 changes: 7 additions & 7 deletions src/store/model/ebgames.ts → src/store/model/gamestop-ca.ts
@@ -1,6 +1,6 @@
import {Store} from './store';

export const EbGames: Store = {
export const GamestopCA: Store = {
currency: '$',
labels: {
maxPrice: {
Expand All @@ -16,32 +16,32 @@ export const EbGames: Store = {
brand: 'test:brand',
model: 'test:model',
series: 'test:series',
url: 'https://www.ebgames.ca/Switch/Games/727918/mario-kart-8-deluxe',
url: 'https://www.gamestop.ca/Switch/Games/727918/mario-kart-8-deluxe',
},
{
brand: 'sony',
model: 'ps5 console',
series: 'sonyps5c',
url: 'https://www.ebgames.ca/PS5/Games/877522',
url: 'https://www.gamestop.ca/PS5/Games/877522',
},
{
brand: 'sony',
model: 'ps5 digital',
series: 'sonyps5de',
url: 'https://www.ebgames.ca/PS5/Games/877523',
url: 'https://www.gamestop.ca/PS5/Games/877523',
},
{
brand: 'microsoft',
model: 'xbox series x',
series: 'xboxsx',
url: 'https://www.ebgames.ca/Xbox%20Series%20X/Games/877779/xbox-series-x',
url: 'https://www.gamestop.ca/Xbox%20Series%20X/Games/877779/xbox-series-x',
},
{
brand: 'microsoft',
model: 'xbox series s',
series: 'xboxss',
url: 'https://www.ebgames.ca/Xbox%20Series%20X/Games/877780/xbox-series-s',
url: 'https://www.gamestop.ca/Xbox%20Series%20X/Games/877780/xbox-series-s',
},
],
name: 'ebgames',
name: 'gamestop-ca',
};
4 changes: 2 additions & 2 deletions src/store/model/index.ts
Expand Up @@ -63,7 +63,6 @@ import {CyberportAt} from './cyberport-at';
import {Dcomp} from './dcomp';
import {Drako} from './drako';
import {DustinHomeNO} from './dustinhome-no';
import {EbGames} from './ebgames';
import {Ebuyer} from './ebuyer';
import {Elcorteingles} from './elcorteingles';
import {Eletronicamente} from './eletronicamente';
Expand All @@ -81,6 +80,7 @@ import {Galaxus} from './galaxus';
import {Game} from './game';
import {GameES} from './game-es';
import {Gamestop} from './gamestop';
import {GamestopCA} from './gamestop-ca';
import {GamestopDE} from './gamestop-de';
import {GamestopIE} from './gamestop-ie';
import {GamestopIT} from './gamestop-it';
Expand Down Expand Up @@ -230,7 +230,6 @@ export const storeList = new Map([
[Dcomp.name, Dcomp],
[Drako.name, Drako],
[DustinHomeNO.name, DustinHomeNO],
[EbGames.name, EbGames],
[Ebuyer.name, Ebuyer],
[Elcorteingles.name, Elcorteingles],
[Eletronicamente.name, Eletronicamente],
Expand All @@ -248,6 +247,7 @@ export const storeList = new Map([
[Game.name, Game],
[GameES.name, GameES],
[Gamestop.name, Gamestop],
[GamestopCA.name, GamestopCA],
[GamestopDE.name, GamestopDE],
[GamestopIE.name, GamestopIE],
[GamestopIT.name, GamestopIT],
Expand Down

0 comments on commit 4e77c67

Please sign in to comment.