We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eacfca2 commit f53c72cCopy full SHA for f53c72c
packages/client-analytics/src/types/GetABTestsOptions.ts
@@ -8,4 +8,16 @@ export type GetABTestsOptions = {
8
* The limit of the number of ab tests returned.
9
*/
10
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;
23
};
0 commit comments