refactor: remove redundant properties from IAgent interface in agent schema

This commit is contained in:
Danny Avila 2025-06-26 22:41:23 -04:00
parent e6b9d6b84b
commit 1b9f155fb8
No known key found for this signature in database
GPG key ID: BF31EEB2C5CA0956

View file

@ -36,10 +36,5 @@ export interface IAgent extends Omit<Document, 'model'> {
versions?: Omit<IAgent, 'versions'>[];
category: string;
support_contact?: ISupportContact;
category: string;
support_contact?: {
name?: string;
email?: string;
};
is_promoted?: boolean;
}