mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-28 17:55:15 +02:00
chore: orval search created by feature (#7290)
This commit is contained in:
parent
c869ea35e4
commit
92d7d9aafe
@ -3,6 +3,7 @@
|
|||||||
* Do not edit manually.
|
* Do not edit manually.
|
||||||
* See `gen:api` script in package.json
|
* See `gen:api` script in package.json
|
||||||
*/
|
*/
|
||||||
|
import type { FeatureSearchResponseSchemaCreatedBy } from './featureSearchResponseSchemaCreatedBy';
|
||||||
import type { FeatureSearchResponseSchemaDependencyType } from './featureSearchResponseSchemaDependencyType';
|
import type { FeatureSearchResponseSchemaDependencyType } from './featureSearchResponseSchemaDependencyType';
|
||||||
import type { FeatureSearchEnvironmentSchema } from './featureSearchEnvironmentSchema';
|
import type { FeatureSearchEnvironmentSchema } from './featureSearchEnvironmentSchema';
|
||||||
import type { FeatureSearchResponseSchemaLifecycle } from './featureSearchResponseSchemaLifecycle';
|
import type { FeatureSearchResponseSchemaLifecycle } from './featureSearchResponseSchemaLifecycle';
|
||||||
@ -26,6 +27,8 @@ export interface FeatureSearchResponseSchema {
|
|||||||
* @nullable
|
* @nullable
|
||||||
*/
|
*/
|
||||||
createdAt: string | null;
|
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.
|
* The type of dependency. 'parent' means that the feature is a parent feature, 'child' means that the feature is a child feature.
|
||||||
* @nullable
|
* @nullable
|
||||||
|
@ -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;
|
||||||
|
};
|
@ -549,6 +549,7 @@ export * from './featureSchemaLifecycleStage';
|
|||||||
export * from './featureSchemaStrategiesItem';
|
export * from './featureSchemaStrategiesItem';
|
||||||
export * from './featureSearchEnvironmentSchema';
|
export * from './featureSearchEnvironmentSchema';
|
||||||
export * from './featureSearchResponseSchema';
|
export * from './featureSearchResponseSchema';
|
||||||
|
export * from './featureSearchResponseSchemaCreatedBy';
|
||||||
export * from './featureSearchResponseSchemaDependencyType';
|
export * from './featureSearchResponseSchemaDependencyType';
|
||||||
export * from './featureSearchResponseSchemaLifecycle';
|
export * from './featureSearchResponseSchemaLifecycle';
|
||||||
export * from './featureSearchResponseSchemaLifecycleStage';
|
export * from './featureSearchResponseSchemaLifecycleStage';
|
||||||
|
Loading…
Reference in New Issue
Block a user