mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-16 00:06:40 +01:00
77a365e667
## About the changes `frontend> yarn gen:api` after recent updates
16 lines
465 B
TypeScript
16 lines
465 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Copy of a feature with a new name
|
|
*/
|
|
export interface CloneFeatureSchema {
|
|
/** The name of the new feature */
|
|
name: string;
|
|
/** Whether to use the new feature name as its group ID or not. Group ID is used for calculating [stickiness](https://docs.getunleash.io/reference/stickiness#calculation). Defaults to true. */
|
|
replaceGroupId?: boolean;
|
|
}
|