@coveo/platform-client 48.0.0 → 48.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -145,6 +145,14 @@ export interface DataHealthGetOverviewParams extends OrganizationParamParts, Tim
|
|
|
145
145
|
* The category to filter by when getting the overview.
|
|
146
146
|
*/
|
|
147
147
|
category?: string;
|
|
148
|
+
/**
|
|
149
|
+
* The tracking id to filter by when getting groups listing.
|
|
150
|
+
*/
|
|
151
|
+
trackingId?: string[];
|
|
152
|
+
/**
|
|
153
|
+
* Whether to include beta rules when getting details.
|
|
154
|
+
*/
|
|
155
|
+
showBetaRules?: boolean;
|
|
148
156
|
}
|
|
149
157
|
export interface DataHealthGetOverviewResponse {
|
|
150
158
|
/**
|
|
@@ -177,6 +185,10 @@ export interface DataHealthGetGroupListingParams extends OrganizationParamParts,
|
|
|
177
185
|
* Whether to show groups with no validated entity or not.
|
|
178
186
|
*/
|
|
179
187
|
showEmptyGroups?: boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Whether to show groups with only beta rules.
|
|
190
|
+
*/
|
|
191
|
+
showBetaRules?: boolean;
|
|
180
192
|
}
|
|
181
193
|
export interface DataHealthGetGroupListingResponse extends PaginatedResponse {
|
|
182
194
|
/**
|
|
@@ -211,6 +223,14 @@ export interface DataHealthGetGroupDetailParams extends OrganizationParamParts,
|
|
|
211
223
|
* The category to filter by when getting details on a group.
|
|
212
224
|
*/
|
|
213
225
|
category: string;
|
|
226
|
+
/**
|
|
227
|
+
* The tracking id to filter by when getting groups listing.
|
|
228
|
+
*/
|
|
229
|
+
trackingId?: string[];
|
|
230
|
+
/**
|
|
231
|
+
* Whether to include beta rules when getting details.
|
|
232
|
+
*/
|
|
233
|
+
showBetaRules?: boolean;
|
|
214
234
|
/**
|
|
215
235
|
* The group to filter by when getting details.
|
|
216
236
|
*/
|