diff options
Diffstat (limited to 'packages/meshbay-common/src/meshbay_common/protocol.py')
| -rw-r--r-- | packages/meshbay-common/src/meshbay_common/protocol.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/meshbay-common/src/meshbay_common/protocol.py b/packages/meshbay-common/src/meshbay_common/protocol.py index 900acc2..32dc373 100644 --- a/packages/meshbay-common/src/meshbay_common/protocol.py +++ b/packages/meshbay-common/src/meshbay_common/protocol.py @@ -94,8 +94,10 @@ class MNP: MEDIA_META_RESP = "media_meta_resp" # node → client: TMDB metadata (or none) VIDEO_ROOT = "video_root" # operator → node: which folder is the Videos entry point VIDEO_ROOT_ACK = "video_root_ack" - TMDB_CONFIG = "tmdb_config" # operator → node: enable/disable TMDB, set token + TMDB_CONFIG = "tmdb_config" # operator → node: set custom TMDB token/language (node-wide) TMDB_CONFIG_ACK = "tmdb_config_ack" # node → everyone: new TMDB config (never the token) + TMDB_ENABLED = "tmdb_enabled" # operator → node: enable/disable TMDB for this group + TMDB_ENABLED_ACK = "tmdb_enabled_ack" # node → this group: new per-group TMDB enabled state SEASON_META_REQ = "season_meta_req" # client → node: TMDB overview/poster for one season SEASON_META_RESP = "season_meta_resp" # node → client: season-level TMDB fields (or none) TMDB_SEARCH_REQ = "tmdb_search_req" # client → node: candidate TMDB matches for a query |