mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
27988e4b30
* feat: strategies list * feat: dnd * fix: resolve reference issues * feat: configure strategy wip * feat: rearrange list * feat: add debounce and execution plan * feat: add separator * feat: update strategy * fix: feature strategy accordion key * fix: localize parameter update logic * feat: ts conversion * fix: perf issues * feat: production guard * fix: clean up environment list * fix: implement markup hooks for environment list * feat: wip constraints * fix: handle nested data structure reference issue * fix: clone deep on child props * fix: remove constraints check * fix: revert to strategies length * fix: refactor useFeature * feat: cache revalidation * fix: set correct starting tab * fix: reset params on adding new strategy * fix: refactor to use useSWR instead of local cache * fix: check dirty directly from new params * fix: dialogue ts * fix: Clean-up typescript warnings * fix: some more typescript nits * feat: strategy execution * feat: strategy execution for environment * fix: refactor execution separator * fix: remove unused property * fix: add header * fix: 0 value for rollout * fix: update snapshots * fix: remove empty deps * fix: use constant for env type * fix: use default for useFeatureStrategy * fix: update snapshot * Update src/component/feature/FeatureView2/FeatureStrategies/FeatureStrategiesEnvironments/FeatureStrategiesEnvironmentList/useDeleteStrategyMarkup.tsx Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> * Update src/component/feature/FeatureView2/FeatureStrategies/FeatureStrategyExecution/FeatureStrategyExecution.tsx Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> * Update src/component/feature/strategy/EditStrategyModal/general-strategy.jsx Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai> Co-authored-by: UnleashTeam <79193084+UnleashTeam@users.noreply.github.com>
36 lines
631 B
TypeScript
36 lines
631 B
TypeScript
export interface IFeatureStrategy {
|
|
id: string;
|
|
name: string;
|
|
constraints: IConstraint[];
|
|
parameters: IParameter;
|
|
}
|
|
|
|
export interface IStrategy {
|
|
name: string;
|
|
displayName: string;
|
|
editable: boolean;
|
|
deprecated: boolean;
|
|
description: string;
|
|
}
|
|
|
|
export interface IConstraint {
|
|
values: string[];
|
|
operator: string;
|
|
contextName: string;
|
|
}
|
|
|
|
export interface IParameter {
|
|
groupId?: string;
|
|
rollout?: number;
|
|
stickiness?: string;
|
|
[index: string]: any;
|
|
}
|
|
|
|
export interface IStrategyPayload {
|
|
name?: string;
|
|
constraints: IConstraint[];
|
|
parameters: IParameter;
|
|
}
|
|
|
|
|