mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
feat(store): add office depot (#157)
Co-authored-by: Jef LeCompte <jeffreylec@gmail.com>
This commit is contained in:
@@ -12,6 +12,7 @@ import {NewEgg} from './newegg';
|
||||
import {NewEggCa} from './newegg-ca';
|
||||
import {Nvidia} from './nvidia';
|
||||
import {Store} from './store';
|
||||
import {OfficeDepot} from './officedepot';
|
||||
|
||||
const masterList = new Map([
|
||||
[Adorama.name, Adorama],
|
||||
@@ -24,7 +25,8 @@ const masterList = new Map([
|
||||
[MicroCenter.name, MicroCenter],
|
||||
[NewEgg.name, NewEgg],
|
||||
[NewEggCa.name, NewEggCa],
|
||||
[Nvidia.name, Nvidia]
|
||||
[Nvidia.name, Nvidia],
|
||||
[OfficeDepot.name, OfficeDepot]
|
||||
]);
|
||||
|
||||
const list = new Map();
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
import {Store} from './store';
|
||||
|
||||
export const OfficeDepot: Store = {
|
||||
links: [
|
||||
{
|
||||
brand: 'TEST',
|
||||
model: 'CARD',
|
||||
series: 'debug',
|
||||
url: 'https://www.officedepot.com/a/products/7189374/PNY-GeForce-RTX-3080-10GB-GDDR6X/'
|
||||
},
|
||||
{
|
||||
brand: 'pny',
|
||||
model: 'xlr8',
|
||||
series: '3080',
|
||||
url: 'https://www.officedepot.com/a/products/7189374/PNY-GeForce-RTX-3080-10GB-GDDR6X/'
|
||||
},
|
||||
{
|
||||
brand: 'pny',
|
||||
model: 'xlr8 rgb',
|
||||
series: '3080',
|
||||
url: 'https://www.officedepot.com/a/products/7791294/PNY-GeForce-RTX-3080-10GB-GDDR6X/'
|
||||
}
|
||||
],
|
||||
labels: {
|
||||
captcha: ['please verify you are a human'],
|
||||
outOfStock: ['out of stock for delivery', 'out of stock']
|
||||
},
|
||||
name: 'officedepot'
|
||||
};
|
||||
Reference in New Issue
Block a user