Skip to content

Commit 991fd2d

Browse files
committed
feat: updat ab test typing
1 parent 5159f61 commit 991fd2d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
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)