mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
17 lines
649 B
TypeScript
17 lines
649 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { CreateFeatureNamingPatternSchema } from './createFeatureNamingPatternSchema';
|
|
import type { UpdateProjectEnterpriseSettingsSchemaMode } from './updateProjectEnterpriseSettingsSchemaMode';
|
|
|
|
/**
|
|
* Data used to update a [project](https://docs.getunleash.io/reference/projects) settings
|
|
*/
|
|
export interface UpdateProjectEnterpriseSettingsSchema {
|
|
featureNaming?: CreateFeatureNamingPatternSchema;
|
|
/** A mode of the project affecting what actions are possible in this project */
|
|
mode?: UpdateProjectEnterpriseSettingsSchemaMode;
|
|
}
|