mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-08 04:15:43 +00:00
14 lines
423 B
TypeScript
14 lines
423 B
TypeScript
import { ApiPropertyOptional } from "@nestjs/swagger";
|
|
import { IsOptional, IsUUID } from "class-validator";
|
|
|
|
export class DashboardQueryDto {
|
|
@ApiPropertyOptional({
|
|
format: "uuid",
|
|
description:
|
|
"Narrow dashboard KPIs to a single operational profile (importer/exporter/freight_forwarder) of the user's company. Omit for company-wide totals.",
|
|
})
|
|
@IsOptional()
|
|
@IsUUID()
|
|
companyProfileId?: string;
|
|
}
|