BUR-61 current.value сделан nullable в бд. Соответствующие сущности скорректированы под изменение бд

This commit is contained in:
Первов Артем
2026-07-05 22:03:47 +03:00
parent 387f6c0613
commit 22529ba0e8
8 changed files with 31 additions and 17 deletions

View File

@@ -5,5 +5,5 @@ export class IngestEdgeValuesDto {
timestamp!: string;
@IsObject()
values!: Record<string, number>;
values!: Record<string, number | null>;
}