1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-19 00:15:43 +01:00
unleash.unleash/frontend/src/openapi/models/profileSchema.ts
2024-11-05 15:14:28 +01:00

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[];
}