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

fix: transition condition type (#10760)

This commit is contained in:
Mateusz Kwasniewski 2025-10-08 12:50:05 +02:00 committed by GitHub
parent f35804e55f
commit bb3d938f57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,6 +6,6 @@ export interface ReleasePlanMilestone {
sortOrder: number;
releasePlanDefinitionId: string;
startedAt?: string;
transitionCondition?: object;
transitionCondition?: { intervalMinutes: number };
strategies?: ReleasePlanMilestoneStrategy[];
}