feat: implement initial structure for activities, analytics, auth, contacts, deals, organizations, tasks, and users APIs with placeholder endpoints

This commit is contained in:
Artem Kashaev
2025-11-27 13:37:37 +05:00
parent 6d9387d1b4
commit 666e0c49f8
35 changed files with 382 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Auth-specific Pydantic schemas."""
from __future__ import annotations
from pydantic import BaseModel, EmailStr
class RegisterRequest(BaseModel):
email: EmailStr
password: str
name: str
organization_name: str