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

fix: knex returns timestamp dates (#10782)

This commit is contained in:
Mateusz Kwasniewski 2025-10-13 11:15:00 +02:00 committed by GitHub
parent 3016da9146
commit ea9f92bd88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,7 @@ export interface ReleasePlanMilestone {
startedAt?: Date;
transitionCondition?: { intervalMinutes: number };
strategies?: ReleasePlanMilestoneStrategy[];
progressionExecutedAt?: string;
progressionExecutedAt?: Date;
}
export type ReleasePlanMilestoneWriteModel = Omit<