feat: подробное отображение ошибок синхронизации

This commit is contained in:
2026-05-12 00:18:47 +03:00
parent fb8ad6de7c
commit 9b28a09253
5 changed files with 122 additions and 6 deletions
@@ -7,7 +7,13 @@ public record SyncScheduleRequest(
IReadOnlyList<string>? TypeId
);
public record SyncResultDto(int Created, int Updated, int Skipped, string? Error);
public record SyncResultDto(
int Created,
int Updated,
int Skipped,
string? Error,
IReadOnlyList<string>? Details = null
);
public record SyncStatusDto(DateTime? LastSyncAt, string Status, SyncResultDto? LastResult);