/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { FeatureSearchResponseSchema } from './featureSearchResponseSchema.js'; /** * A list of features matching search and filter criteria. */ export interface SearchFeaturesSchema { /** The full list of features in this project matching search and filter criteria. */ features: FeatureSearchResponseSchema[]; /** Total count of the features matching search and filter criteria */ total?: number; }