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