whatsapp-crm-common
Version:
Componentes compartidos para servicios de WhatsApp CRM - Common utilities and types for WhatsApp CRM system
28 lines • 618 B
TypeScript
export interface HistorySync {
id: number;
sync_id: string;
tenantId: string;
agentId: string;
sync_type: string;
progress: number | null;
timestamp: number;
is_processed: boolean;
data: any;
created_at: Date;
}
export interface CreateHistorySyncDTO {
sync_id: string;
tenantId: string;
agentId: number;
sync_type: string;
progress?: number;
timestamp: number;
is_processed?: boolean;
data?: any;
}
export interface UpdateHistorySyncDTO {
progress?: number;
is_processed?: boolean;
data?: any;
}
//# sourceMappingURL=IHistory.d.ts.map