mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 13:27:38 +00:00
feat(store): add adorama (#104)
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const Adorama: Store = {
|
||||
links: [
|
||||
{
|
||||
brand: 'pny',
|
||||
model: 'xlr8',
|
||||
url: 'https://www.adorama.com/pnv301tfxmpb.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'msi',
|
||||
model: 'gaming x trio',
|
||||
url: 'https://www.adorama.com/msig380gxt1.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'ftw3 ultra',
|
||||
url: 'https://www.adorama.com/ev10g53897kr.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3 ultra',
|
||||
url: 'https://www.adorama.com/ev10g53885kr.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'ftw3',
|
||||
url: 'https://www.adorama.com/ev10g53895kr.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3',
|
||||
url: 'https://www.adorama.com/ev10g53883kr.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'evga',
|
||||
model: 'xc3 black',
|
||||
url: 'https://www.adorama.com/ev10g53881kr.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
},
|
||||
{
|
||||
brand: 'msi',
|
||||
model: 'ventus 3x oc',
|
||||
url: 'https://www.adorama.com/msig38v3x10c.html',
|
||||
oosLabels: ['temporarily not available', 'out of stock'],
|
||||
captchaLabels: ['please verify you are a human']
|
||||
}
|
||||
],
|
||||
name: 'adorama'
|
||||
};
|
||||
@@ -1,3 +1,5 @@
|
||||
|
||||
import {Adorama} from './adorama';
|
||||
import {Amazon} from './amazon';
|
||||
import {AmazonCa} from './amazon-ca';
|
||||
import {Asus} from './asus';
|
||||
@@ -11,6 +13,7 @@ import {Nvidia} from './nvidia';
|
||||
import {Store} from './store';
|
||||
|
||||
const masterList = new Map([
|
||||
[Adorama.name, Adorama],
|
||||
[Amazon.name, Amazon],
|
||||
[AmazonCa.name, AmazonCa],
|
||||
[Asus.name, Asus],
|
||||
|
||||
Reference in New Issue
Block a user