mirror of
https://github.com/Unleash/unleash.git
synced 2025-05-22 01:16:07 +02:00
17 lines
313 B
TypeScript
17 lines
313 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The role to assign to the user. Can be either the role's ID or its unique name.
|
|
*/
|
|
export type CreateUserSchemaRootRole =
|
|
| number
|
|
| 'Admin'
|
|
| 'Editor'
|
|
| 'Viewer'
|
|
| 'Owner'
|
|
| 'Member';
|