feat: Implement agent availability status with a toggle for agents and display on user profiles.

This commit is contained in:
pradeepkumar
2026-02-02 00:34:31 +05:30
parent b88e47f911
commit edfbf4a51c
4 changed files with 102 additions and 18 deletions

View File

@@ -28,6 +28,7 @@ export interface AgentProfile {
isVerified: boolean;
isFeatured: boolean;
isActive: boolean;
isAvailable: boolean;
agentTypeId: string | null;
agentType: AgentType | null;
user?: {
@@ -121,6 +122,7 @@ export interface PublicAgentProfile {
reviewCount: number;
isVerified: boolean;
isFeatured: boolean;
isAvailable: boolean;
agentTypeId: string | null;
agentType: AgentType | null;
createdAt?: string;