@coveo/platform-client 53.1.0 → 53.2.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.
|
@@ -202,6 +202,10 @@ export interface ListPipelinesOptions extends Paginated {
|
|
|
202
202
|
* Whether to enable pagination.
|
|
203
203
|
*/
|
|
204
204
|
enablePagination?: boolean;
|
|
205
|
+
/**
|
|
206
|
+
* Whether to exclude the A/B test targets from the result.
|
|
207
|
+
*/
|
|
208
|
+
excludeAbTestTargets?: boolean;
|
|
205
209
|
}
|
|
206
210
|
export type PaginatedListPipelinesModel = Omit<PageModel<PipelineModel>, 'totalPages'>;
|
|
207
211
|
export type ListPipelinesReturnVariant<ListPipelineVariant> = ListPipelineVariant extends {
|