2023-04-07 11:16:00 +02:00
|
|
|
/**
|
|
|
|
* Generated by Orval
|
|
|
|
* Do not edit manually.
|
|
|
|
* See `gen:api` script in package.json
|
|
|
|
*/
|
|
|
|
|
2023-08-03 15:05:20 +02:00
|
|
|
/**
|
|
|
|
* The project's [collaboration mode](https://docs.getunleash.io/reference/project-collaboration-mode).
|
2024-04-26 13:31:15 +02:00
|
|
|
* @nullable
|
2023-08-03 15:05:20 +02:00
|
|
|
*/
|
2023-04-07 11:16:00 +02:00
|
|
|
export type ProjectSettingsSchemaMode =
|
2023-12-04 20:49:49 +01:00
|
|
|
| (typeof ProjectSettingsSchemaMode)[keyof typeof ProjectSettingsSchemaMode]
|
|
|
|
| null;
|
2023-04-07 11:16:00 +02:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
|
|
export const ProjectSettingsSchemaMode = {
|
|
|
|
open: 'open',
|
|
|
|
protected: 'protected',
|
|
|
|
} as const;
|