Убран лишний код. Скорректированы docker и package файлы. Переработано взаимодействие с бд - упрощена логика. #1

Merged
APervov merged 12 commits from dev into main 2026-07-01 19:07:59 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit ce493f8fb6 - Show all commits

View File

@@ -2,8 +2,8 @@ export type TagItemDto = {
id: string;
name: string;
tagGroup: string | null;
min: number;
max: number;
min: number | null;
max: number | null;
comment: string;
unitOfMeasurement: string;
edgeIds: string[];

View File

@@ -2,8 +2,8 @@ export type TagRow = {
id: string;
name: string;
tag_group: string | null;
min: number;
max: number;
min: number | null;
max: number | null;
comment: string;
unit_of_measurement: string;
edge_ids: string[];