mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-06 00:07:44 +01:00
24 lines
623 B
TypeScript
24 lines
623 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
import type { FeatureStrategySchema } from './featureStrategySchema';
|
|
import type { VariantSchema } from './variantSchema';
|
|
|
|
export interface ClientFeatureSchema {
|
|
name: string;
|
|
type?: string;
|
|
description?: string | null;
|
|
createdAt?: string | null;
|
|
lastSeenAt?: string | null;
|
|
enabled: boolean;
|
|
stale?: boolean;
|
|
impressionData?: boolean | null;
|
|
project?: string;
|
|
/** @deprecated */
|
|
strategies?: FeatureStrategySchema[];
|
|
/** @deprecated */
|
|
variants?: VariantSchema[] | null;
|
|
}
|