1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-28 19:06:12 +01:00

chore: orval search created by feature (#7290)

This commit is contained in:
Mateusz Kwasniewski 2024-06-05 14:40:13 +02:00 committed by GitHub
parent c869ea35e4
commit 92d7d9aafe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 26 additions and 2 deletions

View File

@ -19,7 +19,7 @@ export interface CreateUserResponseSchema {
emailSent?: boolean;
/** The user id */
id: number;
/** URL used for the userprofile image */
/** URL used for the user profile image */
imageUrl?: string;
/** If the user is actively inviting other users, this is the link that can be shared with other users */
inviteLink?: string;

View File

@ -3,6 +3,7 @@
* Do not edit manually.
* See `gen:api` script in package.json
*/
import type { FeatureSearchResponseSchemaCreatedBy } from './featureSearchResponseSchemaCreatedBy';
import type { FeatureSearchResponseSchemaDependencyType } from './featureSearchResponseSchemaDependencyType';
import type { FeatureSearchEnvironmentSchema } from './featureSearchEnvironmentSchema';
import type { FeatureSearchResponseSchemaLifecycle } from './featureSearchResponseSchemaLifecycle';
@ -26,6 +27,8 @@ export interface FeatureSearchResponseSchema {
* @nullable
*/
createdAt: string | null;
/** User who created the feature flag */
createdBy?: FeatureSearchResponseSchemaCreatedBy;
/**
* The type of dependency. 'parent' means that the feature is a parent feature, 'child' means that the feature is a child feature.
* @nullable

View File

@ -0,0 +1,20 @@
/**
* Generated by Orval
* Do not edit manually.
* See `gen:api` script in package.json
*/
/**
* User who created the feature flag
*/
export type FeatureSearchResponseSchemaCreatedBy = {
/** The user id */
id: number;
/**
* URL used for the user profile image
* @nullable
*/
imageUrl: string | null;
/** Name of the user */
name: string;
};

View File

@ -549,6 +549,7 @@ export * from './featureSchemaLifecycleStage';
export * from './featureSchemaStrategiesItem';
export * from './featureSearchEnvironmentSchema';
export * from './featureSearchResponseSchema';
export * from './featureSearchResponseSchemaCreatedBy';
export * from './featureSearchResponseSchemaDependencyType';
export * from './featureSearchResponseSchemaLifecycle';
export * from './featureSearchResponseSchemaLifecycleStage';

View File

@ -18,7 +18,7 @@ export interface UserSchema {
emailSent?: boolean;
/** The user id */
id: number;
/** URL used for the userprofile image */
/** URL used for the user profile image */
imageUrl?: string;
/** If the user is actively inviting other users, this is the link that can be shared with other users */
inviteLink?: string;