From 46041f0bcca10b606eb3506406c47886d0df585b Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Thu, 14 Nov 2024 09:18:13 +0000 Subject: [PATCH] feat(specs): update estimate response type [skip-bc] (generated) https://github.com/algolia/api-clients-automation/pull/4101 Co-authored-by: algolia-bot Co-authored-by: Christopher Hawke <69921547+cdhawke@users.noreply.github.com> --- .../client-abtesting/model/estimateABTestResponse.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/packages/client-abtesting/model/estimateABTestResponse.ts b/packages/client-abtesting/model/estimateABTestResponse.ts index edc4f7c30..3a8a9c133 100644 --- a/packages/client-abtesting/model/estimateABTestResponse.ts +++ b/packages/client-abtesting/model/estimateABTestResponse.ts @@ -7,12 +7,7 @@ export type EstimateABTestResponse = { durationDays?: number; /** - * Number of tracked searches needed to be able to detect the configured effect for the control variant. + * Sample size estimates for each variant. The first element is the control variant. Each element is the estimated number of searches required to achieve the desired statistical significance. */ - controlSampleSize?: number; - - /** - * Number of tracked searches needed to be able to detect the configured effect for the experiment variant. - */ - experimentSampleSize?: number; + sampleSizes?: Array; };