mirror of
https://github.com/Unleash/unleash.git
synced 2025-10-18 11:14:57 +02:00
22 lines
689 B
TypeScript
22 lines
689 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { SdkContextSchema } from './sdkContextSchema';
|
|
import type { AdvancedPlaygroundRequestSchemaProjects } from './advancedPlaygroundRequestSchemaProjects';
|
|
|
|
/**
|
|
* Data for the playground API to evaluate toggles in advanced mode with environment and context multi selection
|
|
*/
|
|
export interface AdvancedPlaygroundRequestSchema {
|
|
context: SdkContextSchema;
|
|
/**
|
|
* The environments to evaluate toggles in.
|
|
* @minItems 1
|
|
*/
|
|
environments: string[];
|
|
/** A list of projects to check for toggles in. */
|
|
projects?: AdvancedPlaygroundRequestSchemaProjects;
|
|
}
|