Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ updates:
day: monday
time: "06:00"
open-pull-requests-limit: 5
reviewers:
- "cubehouse"
groups:
dev-dependencies:
patterns:
Expand All @@ -32,5 +34,7 @@ updates:
day: monday
time: "06:00"
open-pull-requests-limit: 5
reviewers:
- "cubehouse"
commit-message:
prefix: "ci"
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ matrix.python }}'
- run: pip install -e '.[dev]'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: '3.12' }
- run: pip install -e '.[docs]'
- run: mkdocs build --strict
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -e '.[dev]'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spec-drift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
pull-requests: write
issues: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -e '.[dev]'
Expand Down
48 changes: 24 additions & 24 deletions themeparks/_generated/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,31 @@


class EntityType(Enum):
DESTINATION = 'DESTINATION'
PARK = 'PARK'
ATTRACTION = 'ATTRACTION'
RESTAURANT = 'RESTAURANT'
HOTEL = 'HOTEL'
SHOW = 'SHOW'
DESTINATION = "DESTINATION"
PARK = "PARK"
ATTRACTION = "ATTRACTION"
RESTAURANT = "RESTAURANT"
HOTEL = "HOTEL"
SHOW = "SHOW"


class LiveStatusType(Enum):
OPERATING = 'OPERATING'
DOWN = 'DOWN'
CLOSED = 'CLOSED'
REFURBISHMENT = 'REFURBISHMENT'
OPERATING = "OPERATING"
DOWN = "DOWN"
CLOSED = "CLOSED"
REFURBISHMENT = "REFURBISHMENT"


class ReturnTimeState(Enum):
AVAILABLE = 'AVAILABLE'
TEMP_FULL = 'TEMP_FULL'
FINISHED = 'FINISHED'
AVAILABLE = "AVAILABLE"
TEMP_FULL = "TEMP_FULL"
FINISHED = "FINISHED"


class BoardingGroupState(Enum):
AVAILABLE = 'AVAILABLE'
PAUSED = 'PAUSED'
CLOSED = 'CLOSED'
AVAILABLE = "AVAILABLE"
PAUSED = "PAUSED"
CLOSED = "CLOSED"


class PriceData(BaseModel):
Expand Down Expand Up @@ -157,9 +157,9 @@ class EntityLiveDataResponse(BaseModel):


class Type(Enum):
ADMISSION = 'ADMISSION'
PACKAGE = 'PACKAGE'
ATTRACTION = 'ATTRACTION'
ADMISSION = "ADMISSION"
PACKAGE = "PACKAGE"
ATTRACTION = "ATTRACTION"


class SchedulePriceObject(BaseModel):
Expand All @@ -171,11 +171,11 @@ class SchedulePriceObject(BaseModel):


class Type1(Enum):
OPERATING = 'OPERATING'
TICKETED_EVENT = 'TICKETED_EVENT'
PRIVATE_EVENT = 'PRIVATE_EVENT'
EXTRA_HOURS = 'EXTRA_HOURS'
INFO = 'INFO'
OPERATING = "OPERATING"
TICKETED_EVENT = "TICKETED_EVENT"
PRIVATE_EVENT = "PRIVATE_EVENT"
EXTRA_HOURS = "EXTRA_HOURS"
INFO = "INFO"


class ScheduleEntry(BaseModel):
Expand Down
Loading