bed5c7abef
- Separate workspace landing from login for better UX - Referral system rewards both parties with Pro days - Quota enforcement prevents abuse without breaking endpoints - 7-day free trial with auto-downgrade on expiry - Admin-managed search provider config (SearXNG, Bing) - 15% discount on annual subscriptions - MCP search server wrapping opencode search - Fix discovery module field name mismatch causing 422
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
from .user import User, Product
|
|
from .customer import Customer, Conversation, Message
|
|
from .quotation import Quotation, QuotationItem
|
|
from .corpus import CorpusEntry
|
|
from .team import Team, TeamMember
|
|
from .analytics import UsageLog
|
|
from .notification import Notification
|
|
from .feedback import Feedback
|
|
from .subscription import Subscription
|
|
from .preference import PreferenceAnalysis, MarketingEffect
|
|
from .device import Device
|
|
from .followup import FollowupStrategy, FollowupLog
|
|
from .system_config import SystemConfig
|
|
from .translation_quota import TranslationQuota
|
|
from .certification import Certification, CertType, CertStatus
|
|
from .invoice import Invoice, InvoiceType, InvoiceStatus
|
|
from .referral import ReferralCode, Referral
|
|
from .search_provider import SearchProvider
|
|
|
|
__all__ = [
|
|
"User", "Product",
|
|
"Customer", "Conversation", "Message",
|
|
"Quotation", "QuotationItem",
|
|
"CorpusEntry",
|
|
"Team", "TeamMember",
|
|
"UsageLog",
|
|
"Notification",
|
|
"Feedback",
|
|
"Subscription",
|
|
"PreferenceAnalysis", "MarketingEffect",
|
|
"Device",
|
|
"FollowupStrategy", "FollowupLog",
|
|
"SystemConfig",
|
|
"TranslationQuota",
|
|
"Certification", "CertType", "CertStatus",
|
|
"Invoice", "InvoiceType", "InvoiceStatus",
|
|
"ReferralCode", "Referral",
|
|
"SearchProvider",
|
|
]
|