"""This module holds accounts related event definitions"""

from typing import List, Dict

ACCOUNT_EVENTS: List[Dict] = [
    {
        "event_id": "accounts.created",
        "event_name": "Account Created",
        "description": """Event triggered when a new account is created. This event is used for initializing account settings,
          sending welcome messages, and performing any necessary setup actions related to the new account."""
    },
    {
        "event_id": "accounts.updated",
        "event_name": "Account Updated",
        "description": """Event triggered when an account's details are updated. This event is used for logging update activity,
          notifying relevant services of the changes, and ensuring data consistency across systems."""
    }
]