whatsapp-claude-gpt
Version:
WhatsApp-Claude-GPT is a WhatsApp chatbot that supports multiple AI providers for chat, optional image generation/editing, and voice (speech-to-text and text-to-speech). It’s built for natural, contextual conversations and can now also handle reminders an
27 lines • 755 B
text/typescript
export interface Reminder {
id: string;
message: string;
reminderDate: string;
reminderDateTZ: string;
chatId: string;
chatName: string;
isActive: boolean;
createdAt: Date;
updatedAt: Date;
recurrenceType?: 'none' | 'minutes' | 'daily' | 'weekly' | 'monthly';
recurrenceInterval?: number;
recurrenceEndDate?: string;
recurrenceEndDateTZ?: string;
}
export interface ReminderCreateInput {
message: string;
reminderDate: string;
reminderDateTZ: string;
chatName?: string;
chatId?: string;
recurrenceType?: 'none' | 'minutes' | 'daily' | 'weekly' | 'monthly';
recurrenceInterval?: number;
recurrenceEndDate?: string;
recurrenceEndDateTZ?: string;
updatedAt?: Date;
}