Skip to content

Commit f53c72c

Browse files
cdhawkeshortcuts
andauthored
feat: update ab test typing (#1455)
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent eacfca2 commit f53c72c

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/client-analytics/src/types/GetABTestsOptions.ts

+12
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,16 @@ export type GetABTestsOptions = {
88
* The limit of the number of ab tests returned.
99
*/
1010
readonly limit?: number;
11+
12+
/**
13+
* Filters the returned ab tests by any indices starting with the
14+
* provided prefix that are assigned to either variant of an ab test.
15+
*/
16+
readonly indexPrefix?: string;
17+
18+
/**
19+
* Filters the returned ab tests by any indices ending with the
20+
* provided suffix that are assigned to either variant of an ab test.
21+
*/
22+
readonly indexSuffix?: string;
1123
};

0 commit comments

Comments
 (0)