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.
21 lines
805 B
TypeScript
21 lines
805 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { ClientMetricsSchemaBucketTogglesVariants } from './clientMetricsSchemaBucketTogglesVariants';
|
|
|
|
/**
|
|
* an object containing feature names with yes/no plus variant usage
|
|
*/
|
|
export type ClientMetricsSchemaBucketToggles = {
|
|
[key: string]: {
|
|
/** How many times the toggle evaluated to true */
|
|
yes?: number;
|
|
/** How many times the toggle evaluated to false */
|
|
no?: number;
|
|
/** An object describing how many times each variant was returned. Variant names are used as properties, and the number of times they were exposed is the corresponding value (i.e. `{ [variantName]: number }`). */
|
|
variants?: ClientMetricsSchemaBucketTogglesVariants;
|
|
};
|
|
};
|