mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-19 00:15:43 +01:00
21 lines
541 B
TypeScript
21 lines
541 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { FeatureSchema } from './featureSchema';
|
|
import type { RoleSchema } from './roleSchema';
|
|
|
|
/**
|
|
* User profile overview
|
|
*/
|
|
export interface ProfileSchema {
|
|
/** Deprecated, always returns empty array */
|
|
features: FeatureSchema[];
|
|
/** Which projects this user is a member of */
|
|
projects: string[];
|
|
rootRole: RoleSchema;
|
|
/** Which email subscriptions this user is subscribed to */
|
|
subscriptions: string[];
|
|
}
|