Skip to content

Commit

Permalink
fix(pricing): update meal prices across the menu
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildmodeOne committed Nov 9, 2024
1 parent b4bf5f5 commit d284ea9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
36 changes: 18 additions & 18 deletions src/data/reimanns-meals.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
},
"originalLanguage": "de",
"prices": {
"employee": 5.5,
"student": 5.5,
"guest": 5.5
"employee": 6.5,
"student": 6.5,
"guest": 6.5
},
"variants": [
{
Expand All @@ -36,9 +36,9 @@
},
"originalLanguage": "de",
"prices": {
"employee": 5.8,
"student": 5.8,
"guest": 5.8
"employee": 6.8,
"student": 6.8,
"guest": 6.8
},
"variants": [
{
Expand All @@ -47,9 +47,9 @@
"en": "Menu with fries and drink"
},
"prices": {
"employee": 8.9,
"student": 8.9,
"guest": 8.9
"employee": 9.9,
"student": 9.9,
"guest": 9.9
}
}
]
Expand All @@ -63,9 +63,9 @@
},
"originalLanguage": "de",
"prices": {
"employee": 3.8,
"student": 3.8,
"guest": 3.8
"employee": 4.8,
"student": 4.8,
"guest": 4.8
},
"variants": [
{
Expand All @@ -74,9 +74,9 @@
"en": "Menu with fries and drink"
},
"prices": {
"employee": 6.8,
"student": 6.8,
"guest": 6.8
"employee": 7.8,
"student": 7.8,
"guest": 7.8
}
}
]
Expand All @@ -90,9 +90,9 @@
},
"originalLanguage": "de",
"prices": {
"employee": 5.8,
"student": 5.8,
"guest": 5.8
"employee": 6.8,
"student": 6.8,
"guest": 6.8
},
"variants": [
{
Expand Down
6 changes: 3 additions & 3 deletions src/scraping/reimanns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ export async function getReimannsPlan(): Promise<MealData[]> {
id: getMealHash(day, meal),
category: 'Essen',
prices: {
student: 5.5,
employee: 6.5,
guest: 7.5,
student: 6.5,
employee: 7.9,
guest: 8.9,
},
allergens: null,
flags: null,
Expand Down

0 comments on commit d284ea9

Please sign in to comment.