mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-16 00:06:40 +01:00
77a365e667
## About the changes `frontend> yarn gen:api` after recent updates
19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Assign this root role to auto created users
|
|
*/
|
|
export type SamlSettingsSchemaDefaultRootRole =
|
|
typeof SamlSettingsSchemaDefaultRootRole[keyof typeof SamlSettingsSchemaDefaultRootRole];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const SamlSettingsSchemaDefaultRootRole = {
|
|
Viewer: 'Viewer',
|
|
Editor: 'Editor',
|
|
Admin: 'Admin',
|
|
} as const;
|