1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-27 11:02:16 +01:00

fix: knex returns timestamp dates (#10780)

This commit is contained in:
Mateusz Kwasniewski 2025-10-13 11:01:19 +02:00 committed by GitHub
parent 0d252558c4
commit 3016da9146
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ export interface ReleasePlanMilestone {
name: string;
sortOrder: number;
releasePlanDefinitionId: string;
startedAt?: string;
startedAt?: Date;
transitionCondition?: { intervalMinutes: number };
strategies?: ReleasePlanMilestoneStrategy[];
progressionExecutedAt?: string;

View File

@ -6,7 +6,7 @@ export interface ReleasePlanTemplate {
name: string;
description?: string | null;
createdByUserId: number;
createdAt: string;
createdAt: Date;
milestones?: ReleasePlanMilestone[];
archivedAt?: string;
archivedAt?: Date;
}

View File

@ -8,7 +8,7 @@ export interface ReleasePlan {
featureName: string;
environment: string;
createdByUserId: number;
createdAt: string;
createdAt: Date;
activeMilestoneId?: string;
milestones: ReleasePlanMilestone[];
releasePlanTemplateId: string;