mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
16 lines
418 B
TypeScript
16 lines
418 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* Query parameters used to modify the list of features returned.
|
|
*/
|
|
export interface AdminFeaturesQuerySchema {
|
|
/** A case-insensitive prefix filter for the names of feature flags */
|
|
namePrefix?: string;
|
|
/** Used to filter by tags. For each entry, a TAGTYPE:TAGVALUE is expected */
|
|
tag?: string[];
|
|
}
|