system-prompts-and-models-o.../salesflow-saas/backend/app/schemas/dealix_master.py
Sami Assiri d8bb836614 feat(dealix): ship revenue discovery launch hardening
Add revenue discovery APIs/services, launch verification gates, CI quality checks, and frontend E2E/docs updates to prepare the branch for production go-live.

Made-with: Cursor
2026-04-15 17:51:23 +03:00

16 lines
438 B
Python

"""Request bodies for Dealix Master API (shared with background runners)."""
from __future__ import annotations
from typing import Any
from pydantic import BaseModel, Field
class EnrichExplorationBody(BaseModel):
sector: str = Field(default="تقنية المعلومات")
city: str = Field(default="الرياض")
lead: dict[str, Any] = Field(default_factory=dict)
icp_notes_ar: str = ""
icp_notes_en: str = ""