"""LinkedIn services for API access and data synchronization.

This module provides the public API for LinkedIn services.

Services:
    - LinkedInClient: Client for LinkedIn OAuth and API operations
    - LinkedInSyncService: Service for syncing LinkedIn notifications to Signals
"""

from integrations.linkedin.services.client import (
    LinkedInClient,
    LinkedInNotification,
    LinkedInOrganization,
    LinkedInTokenResponse,
)
from integrations.linkedin.services.sync import LinkedInSyncService

__all__ = [
    "LinkedInClient",
    "LinkedInSyncService",
    "LinkedInTokenResponse",
    "LinkedInOrganization",
    "LinkedInNotification",
]
