import type * as ElevenLabs from "../index"; /** * Identifies an agent as part of the SMB product. */ export interface AgentSmbMetadata { /** Distinguishes between the customer-facing voice agent and the internal assistant agent. */ agentType: ElevenLabs.SmbAgentType; /** True for pre-signup onboarding agents that have not yet been transferred to a user workspace. */ isEphemeral?: boolean; /** Hash of the SMB data+code inputs this agent was last regenerated against; the conversation-start drift gate. None (unstamped) regenerates once on the next conversation. */ sourceFingerprint?: string; }