fix(store): add backoffStatusCodes and new captcha container (#1110)

This commit is contained in:
fnk93
2020-12-02 22:28:31 +01:00
committed by GitHub
parent 6de8c4a5ee
commit 0b11238370
3 changed files with 5 additions and 2 deletions
+1
View File
@@ -1,6 +1,7 @@
import {Store} from './store'; import {Store} from './store';
export const Expert: Store = { export const Expert: Store = {
backoffStatusCodes: [403, 429, 503],
labels: { labels: {
inStock: [ inStock: [
{ {
+2 -1
View File
@@ -1,9 +1,10 @@
import {Store} from './store'; import {Store} from './store';
export const Mediamarkt: Store = { export const Mediamarkt: Store = {
backoffStatusCodes: [403, 429, 503],
labels: { labels: {
captcha: { captcha: {
container: 'body', container: 'p',
text: ['Das ging uns leider zu schnell.'] text: ['Das ging uns leider zu schnell.']
}, },
maxPrice: { maxPrice: {
+2 -1
View File
@@ -1,9 +1,10 @@
import {Store} from './store'; import {Store} from './store';
export const Saturn: Store = { export const Saturn: Store = {
backoffStatusCodes: [403, 429, 503],
labels: { labels: {
captcha: { captcha: {
container: 'body', container: 'p',
text: ['Das ging uns leider zu schnell.'] text: ['Das ging uns leider zu schnell.']
}, },
maxPrice: { maxPrice: {