2023-01-05 11:57:53 +01:00
/ * *
2023-03-15 13:30:07 +01:00
* Generated by Orval
2023-01-05 11:57:53 +01:00
* Do not edit manually .
2023-03-15 13:30:07 +01:00
* See ` gen:api ` script in package . json
2023-01-05 11:57:53 +01:00
* /
2023-06-22 11:52:21 +02:00
/ * *
* Query parameters active for a client features request
* /
2023-01-05 11:57:53 +01:00
export interface ClientFeaturesQuerySchema {
2023-06-22 11:52:21 +02:00
/** Features tagged with one of these tags are included */
2023-01-05 11:57:53 +01:00
tag? : string [ ] [ ] ;
2023-06-22 11:52:21 +02:00
/ * *
* Features that are part of these projects are included in this response . ( DEPRECATED ) - Handled by API tokens
* @deprecated
* /
2023-01-05 11:57:53 +01:00
project? : string [ ] ;
2023-06-22 11:52:21 +02:00
/** Features are filtered to only include features whose name starts with this prefix */
2023-01-05 11:57:53 +01:00
namePrefix? : string ;
2023-06-22 11:52:21 +02:00
/ * *
* Strategies for the feature toggle configured for this environment are included . ( DEPRECATED ) - Handled by API tokens
* @deprecated
* /
2023-01-05 11:57:53 +01:00
environment? : string ;
2023-06-22 11:52:21 +02:00
/** Set to true if requesting client does not support Unleash-Client-Specification 4.2.2 or newer. Modern SDKs will have this set to false, since they will be able to merge constraints and segments themselves */
2023-01-05 11:57:53 +01:00
inlineSegmentConstraints? : boolean ;
}