mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-27 01:19:00 +02:00
Updates orval model based on the current enterprise changes. Mostly doc/comment changes, but does introduce the new strategySchemaLinks model.
16 lines
402 B
TypeScript
16 lines
402 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* An override for deciding which variant should be assigned to a user based on the context name
|
|
*/
|
|
export interface OverrideSchema {
|
|
/** The name of the context field used to determine overrides */
|
|
contextName: string;
|
|
/** Which values that should be overriden */
|
|
values: string[];
|
|
}
|