diff --git a/src/resources/Catalogs/CatalogInterfaces.ts b/src/resources/Catalogs/CatalogInterfaces.ts index 6e34521ca..4a231af7f 100644 --- a/src/resources/Catalogs/CatalogInterfaces.ts +++ b/src/resources/Catalogs/CatalogInterfaces.ts @@ -19,6 +19,10 @@ export interface CatalogsListOptions { * List of the unique identifiers of the sources. */ sourceIds?: string[]; + /** + * If true, catalog will be enriched with field suggestions. This requires a call to SearchAPI + */ + enrichWithFields?: boolean; } export type CatalogConfigurationsListOptions = Omit;