1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
import { ClientTransporterOptions } from '@algolia/client-common';
import { CreateClient } from '@algolia/client-common';
import { RequestOptions } from '@algolia/transporter';
import { SearchOptions } from '@algolia/client-search';
import { Transporter } from '@algolia/transporter';
export declare type ABTest = {
/**
* The ab test name.
*/
readonly name: string;
/**
* The ab test list of variants.
*/
readonly variants: readonly Variant[];
/**
* The ab test end date, if any.
*/
readonly endAt: string;
};
export declare const addABTest: (base: AnalyticsClient) => (abTest: ABTest, requestOptions?: RequestOptions | undefined) => Readonly<Promise<AddABTestResponse>>;
export declare type AddABTestResponse = {
/**
* The ab test unique identifier.
*/
abTestID: number;
/**
* The operation task id. May be used to perform a wait task.
*/
taskID: number;
/**
* The index name where the ab test is attached to.
*/
index: string;
};
export declare type AnalyticsClient = {
/**
* The application id.
*/
readonly appId: string;
/**
* The underlying transporter.
*/
readonly transporter: Transporter;
};
export declare type AnalyticsClientOptions = {
/**
* The application id.
*/
readonly appId: string;
/**
* The api key.
*/
readonly apiKey: string;
/**
* The prefered region.
*/
readonly region?: 'de' | 'us';
};
export declare const createAnalyticsClient: CreateClient<AnalyticsClient, AnalyticsClientOptions & ClientTransporterOptions>;
export declare const deleteABTest: (base: AnalyticsClient) => (abTestID: number, requestOptions?: RequestOptions | undefined) => Readonly<Promise<DeleteABTestResponse>>;
export declare type DeleteABTestResponse = {
/**
* The ab test unique identifier.
*/
abTestID: number;
/**
* The operation task id. May be used to perform a wait task.
*/
taskID: number;
/**
* The index name where the ab test was attached to.
*/
index: string;
};
export declare const getABTest: (base: AnalyticsClient) => (abTestID: number, requestOptions?: RequestOptions | undefined) => Readonly<Promise<GetABTestResponse>>;
export declare type GetABTestResponse = {
/**
* The ab test name.
*/
name: string;
/**
* The ab test status.
*/
status: string;
/**
* The ab test list of variants.
*/
variants: VariantResponse[];
/**
* The ab test end date, if any.
*/
endAt: string;
/**
* The ab test created date, if any.
*/
createdAt: string;
/**
* The ab test updated date.
*/
updatedAt: string;
/**
* The ab test unique identifier.
*/
abTestID: number;
/**
* The ab test significance based on click data. Should be higher than 0.95 to be considered significant - no matter which variant is winning.
*/
clickSignificance: number;
/**
*
* The ab test significance based on conversion data. Should be higher than 0.95 to be considered significant - no matter which variant is winning.
*/
conversionSignificance: number;
};
export declare const getABTests: (base: AnalyticsClient) => (requestOptions?: (RequestOptions & GetABTestsOptions) | undefined) => Readonly<Promise<GetABTestsResponse>>;
export declare type GetABTestsOptions = {
/**
* The number of ab tests to skip from the biginning of the list.
*/
readonly offset?: number;
/**
* 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;
};
export declare type GetABTestsResponse = {
/**
* The number of ab tests within this response.
*/
count: number;
/**
* The total of ab tests.
*/
total: number;
/**
* The list of ab tests.
*/
abtests: GetABTestResponse[] | null;
};
export declare const stopABTest: (base: AnalyticsClient) => (abTestID: number, requestOptions?: RequestOptions | undefined) => Readonly<Promise<StopABTestResponse>>;
export declare type StopABTestResponse = {
/**
* The ab test unique identifier.
*/
abTestID: number;
/**
* The operation task id. May be used to perform a wait task.
*/
taskID: number;
/**
* The index name where the ab test is attached to.
*/
index: string;
};
export declare type Variant = {
/**
* The index name.
*/
readonly index: string;
/**
* Description of the variant. Useful when seing the results in the dashboard or via the API.
*/
readonly description?: string;
/**
* Percentage of the traffic that should be going to the variant. The sum of the percentage should be equal to 100.
*/
readonly trafficPercentage: number;
/**
* The search parameters.
*/
readonly customSearchParameters?: SearchOptions;
};
export declare type VariantResponse = Variant & {
/**
* Average click position for the variant.
*/
averageClickPosition?: number;
/**
* Distinct click count for the variant.
*/
clickCount?: number;
/**
* Click through rate for the variant.
*/
clickThroughRate?: number;
/**
* Click through rate for the variant.
*/
conversionCount?: number;
/**
* Distinct conversion count for the variant.
*/
conversionRate?: number;
/**
* No result count.
*/
noResultCount?: number;
/**
* Tracked search count.
*/
trackedSearchCount?: number;
/**
* Search count.
*/
searchCount?: number;
/**
* User count.
*/
userCount?: number;
/**
* Count of the tracked searches attributed to outlier traffic that were removed from the A/B test.
*/
outlierTrackedSearchesCount?: number;
/**
* Count of users attributed to outlier traffic that were removed from the A/B test.
*/
outlierUsersCount?: number;
/**
* The search parameters.
*/
customSearchParameters?: SearchOptions;
};
export { }