Skip to content

Flesh out full definition of event models, including their complex payloads #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Apr 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"dependencies" = [
# "jmespath >= 1.0.1", # Upcoming pattern-filtering functionality
"platformdirs >= 4.3.6",
"pydantic >= 2.9.2",
"pydantic_core >= 2.23.4",
"pydantic >= 2.11",
"pydantic_core >= 2.33",
"tomli >= 2.0.2",
"websockets >= 13.1",
"typer >= 0.15.1",
Expand Down
3 changes: 2 additions & 1 deletion streamdeck/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
from streamdeck.actions import Action, ActionBase, ActionRegistry
from streamdeck.command_sender import StreamDeckCommandSender
from streamdeck.event_listener import EventListener, EventListenerManager
from streamdeck.models.events import ContextualEventMixin, EventAdapter
from streamdeck.models.events.adapter import EventAdapter
from streamdeck.models.events.common import ContextualEventMixin
from streamdeck.types import (
EventHandlerBasicFunc,
EventHandlerFunc,
Expand Down
306 changes: 0 additions & 306 deletions streamdeck/models/events.py

This file was deleted.

Loading