mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
77a365e667
## About the changes `frontend> yarn gen:api` after recent updates
17 lines
576 B
TypeScript
17 lines
576 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { UpdateStrategySchemaParametersItem } from './updateStrategySchemaParametersItem';
|
|
|
|
/**
|
|
* The data required to update a strategy type.
|
|
*/
|
|
export interface UpdateStrategySchema {
|
|
/** A description of the strategy type. */
|
|
description?: string;
|
|
/** The parameter list lets you pass arguments to your custom activation strategy. These will be made available to your custom strategy implementation. */
|
|
parameters: UpdateStrategySchemaParametersItem[];
|
|
}
|