diff --git a/packages/client-analytics/src/types/GetABTestsOptions.ts b/packages/client-analytics/src/types/GetABTestsOptions.ts index 1b80b5b38..85a32f8ba 100644 --- a/packages/client-analytics/src/types/GetABTestsOptions.ts +++ b/packages/client-analytics/src/types/GetABTestsOptions.ts @@ -8,4 +8,16 @@ export type GetABTestsOptions = { * The limit of the number of ab tests returned. */ readonly limit?: number; + + /** + * Filters the returned ab tests by any indices starting with the + * provided prefix that are assigned to either variant of an ab test. + */ + readonly indexPrefix?: string; + + /** + * Filters the returned ab tests by any indices ending with the + * provided suffix that are assigned to either variant of an ab test. + */ + readonly indexSuffix?: string; };