Skip to content

Commit

Permalink
fix(store): add backoffStatusCodes and new captcha container (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
fnk93 committed Dec 2, 2020
1 parent 6de8c4a commit 0b11238
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/store/model/expert.ts
@@ -1,6 +1,7 @@
import {Store} from './store';

export const Expert: Store = {
backoffStatusCodes: [403, 429, 503],
labels: {
inStock: [
{
Expand Down
3 changes: 2 additions & 1 deletion src/store/model/mediamarkt.ts
@@ -1,9 +1,10 @@
import {Store} from './store';

export const Mediamarkt: Store = {
backoffStatusCodes: [403, 429, 503],
labels: {
captcha: {
container: 'body',
container: 'p',
text: ['Das ging uns leider zu schnell.']
},
maxPrice: {
Expand Down
3 changes: 2 additions & 1 deletion src/store/model/saturn.ts
@@ -1,9 +1,10 @@
import {Store} from './store';

export const Saturn: Store = {
backoffStatusCodes: [403, 429, 503],
labels: {
captcha: {
container: 'body',
container: 'p',
text: ['Das ging uns leider zu schnell.']
},
maxPrice: {
Expand Down

0 comments on commit 0b11238

Please sign in to comment.