Merge development, resolviendo utilidades combinadas y actualizando ClassDialog

This commit is contained in:
2026-04-16 12:13:39 -05:00
4 changed files with 257 additions and 186 deletions

View File

@@ -58,7 +58,9 @@ export interface A76ClassListParams {
page_size?: number;
class_code?: string;
description?: string;
q?: string; // Agregado por si usas búsqueda general
/** Búsqueda OR en class_code, description_es y description_en (backend ClassService) */
search?: string;
q?: string;
sort_by?: string;
sort_order?: 'asc' | 'desc';
}