Skip to content

Commit

Permalink
feat(ml): update SmartSnippets preview response
Browse files Browse the repository at this point in the history
Add deprecated tag
  • Loading branch information
JTangCoveo committed Nov 14, 2023
1 parent 59be929 commit 89ad7e9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export interface SmartSnippetsDocumentGroupPreview {
*/
query: string;
/**
* The total number of documents in the selected sources.
* @Deprecated use `numberOfDocumentsInSources` instead
*/
numberOfDocuments: number;
/**
Expand All @@ -76,15 +76,15 @@ export interface SmartSnippetsDocumentGroupPreview {
*/
numberOfValidDocuments: number;
/**
* The number of documents in the selected sources that match the conditions.
* @Deprecated use `numberOfDocumentsInSourcesMatchingFilters` instead
*/
numberOfDocumentsMatchingConditions: number;
/**
* The number of documents in the selected sources that match the conditions.
*/
numberOfDocumentsInSourcesMatchingFilters: number;
/**
* The number of documents in the selected sources that match the conditions and have a permanentid.
* @Deprecated use `numberOfDocumentsInSourcesMatchingFiltersWithPermanentId` instead
*/
numberOfDocumentsWithPermanentId: number;
/**
Expand Down

0 comments on commit 89ad7e9

Please sign in to comment.