-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.6.0: Added Pairi Daiza and Heidi Park, improved data points and fi…
…xed Efteling * Added tests to check if POI lists actually contain items * Fixed Cedar Fair parks (except Kings Island) * Fixed CDA image-less POIs and added CDA videos * v0.5.2: Finally fixed Efteling, temp removed Beekse Bergen, fixed Kings Island, fixed Blijdorp * v0.5.3: Changed from hard-coded Halloween to Events, improved ID's for some parks * v0.5.4: Fixed Blijdorp and Beekse Bergen, sort of Universal fix * v0.5.5: Finished Event implementation, added Toverland halloween event * v0.5.6: Added Heidi Park, added event slugs * v0.5.7: Fixed Blijdorp, added park searching, fixed broken tests * v0.5.8: Added Pairi Daiza and Animal Facts * v0.5.10: Implemented more tests, improved Pairi Daiza, added Efteling menus * v0.6.0: Greatly improved Beekse Bergen, added a property to `supports` to indicate text type (markdown, text, ...)
- Loading branch information
1 parent
a7237ee
commit 8f73b1e
Showing
173 changed files
with
31,176 additions
and
561 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export enum EventCategory { | ||
HALLOWEEN = 'HALLOWEEN', | ||
WINTER = 'WINTER', | ||
EASTER = 'EASTER', | ||
OTHER = 'OTHER', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { EventCategory } from './event.category'; | ||
import { Poi } from './poi.interface'; | ||
|
||
export interface ThemeParkEvent { | ||
fromDate?: string; | ||
toDate?: string; | ||
dates?: string[]; | ||
type: EventCategory; | ||
slug: string; | ||
name?: string; | ||
subTitle?: string; | ||
description?: string; | ||
image?: string, | ||
pois?: Poi[]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.