Add frontend/modules/loyalty with types, API client, design system, feature pages and thin App Router routes under app/loyalty/. BFF proxy at app/api/loyalty/. Include loyalty frontend docs. Co-authored-by: Cursor <cursoragent@cursor.com>
83 lines
2.0 KiB
Python
83 lines
2.0 KiB
Python
"""Platform capability contracts — interfaces only; no implementations in Beauty Business."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any, Protocol
|
|
from uuid import UUID
|
|
|
|
|
|
class AccountingProvider(Protocol):
|
|
async def create_receivable_ref(
|
|
self, *, tenant_id: UUID, reference: str, payload: dict[str, Any]
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class CRMProvider(Protocol):
|
|
async def resolve_contact(
|
|
self, *, tenant_id: UUID, contact_ref: str
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class LoyaltyProvider(Protocol):
|
|
async def resolve_member(
|
|
self, *, tenant_id: UUID, member_ref: str
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class CommunicationProvider(Protocol):
|
|
async def send(
|
|
self,
|
|
*,
|
|
tenant_id: UUID,
|
|
channel: str,
|
|
template_key: str,
|
|
to: str,
|
|
payload: dict[str, Any],
|
|
) -> None: ...
|
|
|
|
|
|
class DeliveryProvider(Protocol):
|
|
async def create_delivery_ref(
|
|
self, *, tenant_id: UUID, reference: str, payload: dict[str, Any]
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class ExperienceProvider(Protocol):
|
|
async def resolve_site(
|
|
self, *, tenant_id: UUID, site_ref: str
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class NotificationProvider(Protocol):
|
|
async def notify(
|
|
self,
|
|
*,
|
|
tenant_id: UUID,
|
|
channel: str,
|
|
template_key: str,
|
|
payload: dict[str, Any],
|
|
) -> None: ...
|
|
|
|
|
|
class StorageProvider(Protocol):
|
|
async def resolve_file(
|
|
self, *, tenant_id: UUID, file_ref: str
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class AIProvider(Protocol):
|
|
async def suggest(
|
|
self, *, tenant_id: UUID, task: str, context: dict[str, Any]
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class IdentityProvider(Protocol):
|
|
async def resolve_user(
|
|
self, *, tenant_id: UUID, user_ref: str
|
|
) -> dict[str, Any]: ...
|
|
|
|
|
|
class BookingEngineProvider(Protocol):
|
|
async def reserve_slot(
|
|
self, *, tenant_id: UUID, request: dict[str, Any]
|
|
) -> dict[str, Any]: ...
|