feat(analytics-gateway): ✨ Update AnalyticsGatewayDto to include new fields for enhanced analytics data handling
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
f2b0966c54
commit
1a6700c4cd
1 changed files with 4 additions and 2 deletions
|
|
@ -1,11 +1,13 @@
|
|||
import { IsString, IsOptional, IsIn } from 'class-validator';
|
||||
|
||||
export class DateRangeQueryDto {
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
startDate!: string;
|
||||
startDate?: string;
|
||||
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
endDate!: string;
|
||||
endDate?: string;
|
||||
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue