@wix/analytics-session 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/analytics-session",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/analytics-session_analytics-session": "1.0.
|
|
21
|
+
"@wix/analytics-session_analytics-session": "1.0.5"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"glob": "^10.4.1",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"fqdn": ""
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"falconPackageHash": "
|
|
45
|
+
"falconPackageHash": "4c776f8a443d578791603a4b9e5aa9c0d76a823a63090ba728598912"
|
|
46
46
|
}
|
|
@@ -175,25 +175,88 @@ declare enum JobStatus {
|
|
|
175
175
|
/** Request for getting store conversion sessions. */
|
|
176
176
|
interface CountFunnelSessionsRequest extends CountFunnelSessionsRequestPeriodOneOf {
|
|
177
177
|
/** Custom time period with start & end dates. */
|
|
178
|
-
|
|
178
|
+
customPeriod?: CustomPeriod;
|
|
179
179
|
/** Predefined time period. */
|
|
180
|
-
|
|
180
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
181
181
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
182
182
|
timezone?: string | null;
|
|
183
183
|
}
|
|
184
184
|
/** @oneof */
|
|
185
185
|
interface CountFunnelSessionsRequestPeriodOneOf {
|
|
186
186
|
/** Custom time period with start & end dates. */
|
|
187
|
-
|
|
187
|
+
customPeriod?: CustomPeriod;
|
|
188
188
|
/** Predefined time period. */
|
|
189
|
-
|
|
189
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
190
|
+
}
|
|
191
|
+
/** Custom period. Doesn't have comparison period, so use with SELECTED_PERIOD. */
|
|
192
|
+
interface CustomPeriod {
|
|
193
|
+
/** Custom period start date in provided timezone. By default in UTC. */
|
|
194
|
+
start?: string;
|
|
195
|
+
/** Custom period end date in provided timezone. By default in UTC. */
|
|
196
|
+
end?: string;
|
|
197
|
+
}
|
|
198
|
+
/** Predefined period. Could be used with comparison period. */
|
|
199
|
+
interface PredefinedPeriod {
|
|
200
|
+
/** Predefined period type. */
|
|
201
|
+
period?: PredefinedPeriodEnum;
|
|
202
|
+
}
|
|
203
|
+
/** Query period. */
|
|
204
|
+
declare enum PredefinedPeriodEnum {
|
|
205
|
+
/** Today. */
|
|
206
|
+
TODAY = "TODAY",
|
|
207
|
+
/** Yesterday. */
|
|
208
|
+
YESTERDAY = "YESTERDAY",
|
|
209
|
+
/** Last 7 days. */
|
|
210
|
+
LAST_7_DAYS = "LAST_7_DAYS",
|
|
211
|
+
/** Lat 14 days. */
|
|
212
|
+
LAST_14_DAYS = "LAST_14_DAYS",
|
|
213
|
+
/** Last 30 days. */
|
|
214
|
+
LAST_30_DAYS = "LAST_30_DAYS",
|
|
215
|
+
/** Last 90 days. */
|
|
216
|
+
LAST_90_DAYS = "LAST_90_DAYS",
|
|
217
|
+
/** Last 28 days. */
|
|
218
|
+
LAST_28_DAYS = "LAST_28_DAYS",
|
|
219
|
+
/** Last 180 days. */
|
|
220
|
+
LAST_180_DAYS = "LAST_180_DAYS",
|
|
221
|
+
/** Last 365 days. */
|
|
222
|
+
LAST_365_DAYS = "LAST_365_DAYS",
|
|
223
|
+
/** Current week. Week start is Monday. */
|
|
224
|
+
THIS_WEEK = "THIS_WEEK",
|
|
225
|
+
/** Current month. */
|
|
226
|
+
THIS_MONTH = "THIS_MONTH",
|
|
227
|
+
/** Current quater. */
|
|
228
|
+
THIS_QUATER = "THIS_QUATER",
|
|
229
|
+
/** This year. */
|
|
230
|
+
THIS_YEAR = "THIS_YEAR",
|
|
231
|
+
/** Last week (previous week). */
|
|
232
|
+
LAST_WEEK = "LAST_WEEK",
|
|
233
|
+
/** Last month. */
|
|
234
|
+
LAST_MONTH = "LAST_MONTH",
|
|
235
|
+
/** Last quater. */
|
|
236
|
+
LAST_QUATER = "LAST_QUATER",
|
|
237
|
+
/** Last year. */
|
|
238
|
+
LAST_YEAR = "LAST_YEAR",
|
|
239
|
+
/** Last 7 days up until yesterday. */
|
|
240
|
+
LAST_7_DAYS_BEFORE_TODAY = "LAST_7_DAYS_BEFORE_TODAY",
|
|
241
|
+
/** Lat 14 days up until yesterday. */
|
|
242
|
+
LAST_14_DAYS_BEFORE_TODAY = "LAST_14_DAYS_BEFORE_TODAY",
|
|
243
|
+
/** Last 30 days up until yesterday. */
|
|
244
|
+
LAST_30_DAYS_BEFORE_TODAY = "LAST_30_DAYS_BEFORE_TODAY",
|
|
245
|
+
/** Last 90 days up until yesterday. */
|
|
246
|
+
LAST_90_DAYS_BEFORE_TODAY = "LAST_90_DAYS_BEFORE_TODAY",
|
|
247
|
+
/** Last 28 days up until yesterday. */
|
|
248
|
+
LAST_28_DAYS_BEFORE_TODAY = "LAST_28_DAYS_BEFORE_TODAY",
|
|
249
|
+
/** Last 180 days up until yesterday. */
|
|
250
|
+
LAST_180_DAYS_BEFORE_TODAY = "LAST_180_DAYS_BEFORE_TODAY",
|
|
251
|
+
/** Last 365 days up until yesterday. */
|
|
252
|
+
LAST_365_DAYS_BEFORE_TODAY = "LAST_365_DAYS_BEFORE_TODAY",
|
|
253
|
+
/** Last 12 months. */
|
|
254
|
+
LAST_12_MONTHS = "LAST_12_MONTHS"
|
|
190
255
|
}
|
|
191
256
|
/** Response for getting store conversion sessions. */
|
|
192
257
|
interface CountFunnelSessionsResponse {
|
|
193
|
-
/** Recordings. */
|
|
194
258
|
recordings?: Recordings;
|
|
195
259
|
}
|
|
196
|
-
/** Recordings. */
|
|
197
260
|
interface Recordings {
|
|
198
261
|
/** Saved Session count. */
|
|
199
262
|
siteSessions?: number | null;
|
|
@@ -209,18 +272,18 @@ interface Recordings {
|
|
|
209
272
|
/** Request for getting the total number of sessions. */
|
|
210
273
|
interface CountSessionsRequest extends CountSessionsRequestPeriodOneOf {
|
|
211
274
|
/** Custom time period with start & end dates. */
|
|
212
|
-
|
|
275
|
+
customPeriod?: CustomPeriod;
|
|
213
276
|
/** Predefined time period. */
|
|
214
|
-
|
|
277
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
215
278
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
216
279
|
timezone?: string | null;
|
|
217
280
|
}
|
|
218
281
|
/** @oneof */
|
|
219
282
|
interface CountSessionsRequestPeriodOneOf {
|
|
220
283
|
/** Custom time period with start & end dates. */
|
|
221
|
-
|
|
284
|
+
customPeriod?: CustomPeriod;
|
|
222
285
|
/** Predefined time period. */
|
|
223
|
-
|
|
286
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
224
287
|
}
|
|
225
288
|
/** Response for getting the total number of sessions. */
|
|
226
289
|
interface CountSessionsResponse {
|
|
@@ -319,6 +382,7 @@ type context_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
|
|
|
319
382
|
type context_CountSessionsRequest = CountSessionsRequest;
|
|
320
383
|
type context_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
|
|
321
384
|
type context_CountSessionsResponse = CountSessionsResponse;
|
|
385
|
+
type context_CustomPeriod = CustomPeriod;
|
|
322
386
|
type context_CustomTimePeriod = CustomTimePeriod;
|
|
323
387
|
type context_DeviceType = DeviceType;
|
|
324
388
|
declare const context_DeviceType: typeof DeviceType;
|
|
@@ -341,6 +405,9 @@ type context_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
|
|
|
341
405
|
type context_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
|
|
342
406
|
type context_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
|
|
343
407
|
type context_NavigationFlowSessionsParams = NavigationFlowSessionsParams;
|
|
408
|
+
type context_PredefinedPeriod = PredefinedPeriod;
|
|
409
|
+
type context_PredefinedPeriodEnum = PredefinedPeriodEnum;
|
|
410
|
+
declare const context_PredefinedPeriodEnum: typeof PredefinedPeriodEnum;
|
|
344
411
|
type context_PredefinedTimePeriod = PredefinedTimePeriod;
|
|
345
412
|
declare const context_PredefinedTimePeriod: typeof PredefinedTimePeriod;
|
|
346
413
|
type context_Recordings = Recordings;
|
|
@@ -350,7 +417,7 @@ declare const context_getListSessionsJobResult: typeof getListSessionsJobResult;
|
|
|
350
417
|
declare const context_listSessionsAsync: typeof listSessionsAsync;
|
|
351
418
|
declare const context_markSessionAsRecorded: typeof markSessionAsRecorded;
|
|
352
419
|
declare namespace context {
|
|
353
|
-
export { type context_ConversionFunnelSessionsParams as ConversionFunnelSessionsParams, type context_CountFunnelSessionsRequest as CountFunnelSessionsRequest, type context_CountFunnelSessionsRequestPeriodOneOf as CountFunnelSessionsRequestPeriodOneOf, type context_CountFunnelSessionsResponse as CountFunnelSessionsResponse, type context_CountSessionsRequest as CountSessionsRequest, type context_CountSessionsRequestPeriodOneOf as CountSessionsRequestPeriodOneOf, type context_CountSessionsResponse as CountSessionsResponse, type context_CustomTimePeriod as CustomTimePeriod, context_DeviceType as DeviceType, context_FunnelStep as FunnelStep, type context_GetListSessionsJobResultOptions as GetListSessionsJobResultOptions, type context_GetListSessionsJobResultRequest as GetListSessionsJobResultRequest, type context_GetListSessionsJobResultResponse as GetListSessionsJobResultResponse, type context_GetListSessionsJobResultResponseNonNullableFields as GetListSessionsJobResultResponseNonNullableFields, type context_JobResult as JobResult, context_JobStatus as JobStatus, type context_ListSessionsAsyncOptions as ListSessionsAsyncOptions, type context_ListSessionsAsyncRequest as ListSessionsAsyncRequest, type context_ListSessionsAsyncRequestParamsOneOf as ListSessionsAsyncRequestParamsOneOf, type context_ListSessionsAsyncRequestPeriodOneOf as ListSessionsAsyncRequestPeriodOneOf, type context_ListSessionsAsyncResponse as ListSessionsAsyncResponse, type context_ListSessionsAsyncResponseNonNullableFields as ListSessionsAsyncResponseNonNullableFields, type context_MarkSessionAsRecordedOptions as MarkSessionAsRecordedOptions, type context_MarkSessionAsRecordedRequest as MarkSessionAsRecordedRequest, type context_MarkSessionAsRecordedResponse as MarkSessionAsRecordedResponse, type context_NavigationFlowSessionsParams as NavigationFlowSessionsParams, context_PredefinedTimePeriod as PredefinedTimePeriod, type context_Recordings as Recordings, type context_Session as Session, type context_SessionsByDeviceParams as SessionsByDeviceParams, context_getListSessionsJobResult as getListSessionsJobResult, context_listSessionsAsync as listSessionsAsync, context_markSessionAsRecorded as markSessionAsRecorded };
|
|
420
|
+
export { type context_ConversionFunnelSessionsParams as ConversionFunnelSessionsParams, type context_CountFunnelSessionsRequest as CountFunnelSessionsRequest, type context_CountFunnelSessionsRequestPeriodOneOf as CountFunnelSessionsRequestPeriodOneOf, type context_CountFunnelSessionsResponse as CountFunnelSessionsResponse, type context_CountSessionsRequest as CountSessionsRequest, type context_CountSessionsRequestPeriodOneOf as CountSessionsRequestPeriodOneOf, type context_CountSessionsResponse as CountSessionsResponse, type context_CustomPeriod as CustomPeriod, type context_CustomTimePeriod as CustomTimePeriod, context_DeviceType as DeviceType, context_FunnelStep as FunnelStep, type context_GetListSessionsJobResultOptions as GetListSessionsJobResultOptions, type context_GetListSessionsJobResultRequest as GetListSessionsJobResultRequest, type context_GetListSessionsJobResultResponse as GetListSessionsJobResultResponse, type context_GetListSessionsJobResultResponseNonNullableFields as GetListSessionsJobResultResponseNonNullableFields, type context_JobResult as JobResult, context_JobStatus as JobStatus, type context_ListSessionsAsyncOptions as ListSessionsAsyncOptions, type context_ListSessionsAsyncRequest as ListSessionsAsyncRequest, type context_ListSessionsAsyncRequestParamsOneOf as ListSessionsAsyncRequestParamsOneOf, type context_ListSessionsAsyncRequestPeriodOneOf as ListSessionsAsyncRequestPeriodOneOf, type context_ListSessionsAsyncResponse as ListSessionsAsyncResponse, type context_ListSessionsAsyncResponseNonNullableFields as ListSessionsAsyncResponseNonNullableFields, type context_MarkSessionAsRecordedOptions as MarkSessionAsRecordedOptions, type context_MarkSessionAsRecordedRequest as MarkSessionAsRecordedRequest, type context_MarkSessionAsRecordedResponse as MarkSessionAsRecordedResponse, type context_NavigationFlowSessionsParams as NavigationFlowSessionsParams, type context_PredefinedPeriod as PredefinedPeriod, context_PredefinedPeriodEnum as PredefinedPeriodEnum, context_PredefinedTimePeriod as PredefinedTimePeriod, type context_Recordings as Recordings, type context_Session as Session, type context_SessionsByDeviceParams as SessionsByDeviceParams, context_getListSessionsJobResult as getListSessionsJobResult, context_listSessionsAsync as listSessionsAsync, context_markSessionAsRecorded as markSessionAsRecorded };
|
|
354
421
|
}
|
|
355
422
|
|
|
356
423
|
export { context as analyticsSession };
|
|
@@ -175,25 +175,88 @@ declare enum JobStatus {
|
|
|
175
175
|
/** Request for getting store conversion sessions. */
|
|
176
176
|
interface CountFunnelSessionsRequest extends CountFunnelSessionsRequestPeriodOneOf {
|
|
177
177
|
/** Custom time period with start & end dates. */
|
|
178
|
-
|
|
178
|
+
customPeriod?: CustomPeriod;
|
|
179
179
|
/** Predefined time period. */
|
|
180
|
-
|
|
180
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
181
181
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
182
182
|
timezone?: string | null;
|
|
183
183
|
}
|
|
184
184
|
/** @oneof */
|
|
185
185
|
interface CountFunnelSessionsRequestPeriodOneOf {
|
|
186
186
|
/** Custom time period with start & end dates. */
|
|
187
|
-
|
|
187
|
+
customPeriod?: CustomPeriod;
|
|
188
188
|
/** Predefined time period. */
|
|
189
|
-
|
|
189
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
190
|
+
}
|
|
191
|
+
/** Custom period. Doesn't have comparison period, so use with SELECTED_PERIOD. */
|
|
192
|
+
interface CustomPeriod {
|
|
193
|
+
/** Custom period start date in provided timezone. By default in UTC. */
|
|
194
|
+
start?: string;
|
|
195
|
+
/** Custom period end date in provided timezone. By default in UTC. */
|
|
196
|
+
end?: string;
|
|
197
|
+
}
|
|
198
|
+
/** Predefined period. Could be used with comparison period. */
|
|
199
|
+
interface PredefinedPeriod {
|
|
200
|
+
/** Predefined period type. */
|
|
201
|
+
period?: PredefinedPeriodEnum;
|
|
202
|
+
}
|
|
203
|
+
/** Query period. */
|
|
204
|
+
declare enum PredefinedPeriodEnum {
|
|
205
|
+
/** Today. */
|
|
206
|
+
TODAY = "TODAY",
|
|
207
|
+
/** Yesterday. */
|
|
208
|
+
YESTERDAY = "YESTERDAY",
|
|
209
|
+
/** Last 7 days. */
|
|
210
|
+
LAST_7_DAYS = "LAST_7_DAYS",
|
|
211
|
+
/** Lat 14 days. */
|
|
212
|
+
LAST_14_DAYS = "LAST_14_DAYS",
|
|
213
|
+
/** Last 30 days. */
|
|
214
|
+
LAST_30_DAYS = "LAST_30_DAYS",
|
|
215
|
+
/** Last 90 days. */
|
|
216
|
+
LAST_90_DAYS = "LAST_90_DAYS",
|
|
217
|
+
/** Last 28 days. */
|
|
218
|
+
LAST_28_DAYS = "LAST_28_DAYS",
|
|
219
|
+
/** Last 180 days. */
|
|
220
|
+
LAST_180_DAYS = "LAST_180_DAYS",
|
|
221
|
+
/** Last 365 days. */
|
|
222
|
+
LAST_365_DAYS = "LAST_365_DAYS",
|
|
223
|
+
/** Current week. Week start is Monday. */
|
|
224
|
+
THIS_WEEK = "THIS_WEEK",
|
|
225
|
+
/** Current month. */
|
|
226
|
+
THIS_MONTH = "THIS_MONTH",
|
|
227
|
+
/** Current quater. */
|
|
228
|
+
THIS_QUATER = "THIS_QUATER",
|
|
229
|
+
/** This year. */
|
|
230
|
+
THIS_YEAR = "THIS_YEAR",
|
|
231
|
+
/** Last week (previous week). */
|
|
232
|
+
LAST_WEEK = "LAST_WEEK",
|
|
233
|
+
/** Last month. */
|
|
234
|
+
LAST_MONTH = "LAST_MONTH",
|
|
235
|
+
/** Last quater. */
|
|
236
|
+
LAST_QUATER = "LAST_QUATER",
|
|
237
|
+
/** Last year. */
|
|
238
|
+
LAST_YEAR = "LAST_YEAR",
|
|
239
|
+
/** Last 7 days up until yesterday. */
|
|
240
|
+
LAST_7_DAYS_BEFORE_TODAY = "LAST_7_DAYS_BEFORE_TODAY",
|
|
241
|
+
/** Lat 14 days up until yesterday. */
|
|
242
|
+
LAST_14_DAYS_BEFORE_TODAY = "LAST_14_DAYS_BEFORE_TODAY",
|
|
243
|
+
/** Last 30 days up until yesterday. */
|
|
244
|
+
LAST_30_DAYS_BEFORE_TODAY = "LAST_30_DAYS_BEFORE_TODAY",
|
|
245
|
+
/** Last 90 days up until yesterday. */
|
|
246
|
+
LAST_90_DAYS_BEFORE_TODAY = "LAST_90_DAYS_BEFORE_TODAY",
|
|
247
|
+
/** Last 28 days up until yesterday. */
|
|
248
|
+
LAST_28_DAYS_BEFORE_TODAY = "LAST_28_DAYS_BEFORE_TODAY",
|
|
249
|
+
/** Last 180 days up until yesterday. */
|
|
250
|
+
LAST_180_DAYS_BEFORE_TODAY = "LAST_180_DAYS_BEFORE_TODAY",
|
|
251
|
+
/** Last 365 days up until yesterday. */
|
|
252
|
+
LAST_365_DAYS_BEFORE_TODAY = "LAST_365_DAYS_BEFORE_TODAY",
|
|
253
|
+
/** Last 12 months. */
|
|
254
|
+
LAST_12_MONTHS = "LAST_12_MONTHS"
|
|
190
255
|
}
|
|
191
256
|
/** Response for getting store conversion sessions. */
|
|
192
257
|
interface CountFunnelSessionsResponse {
|
|
193
|
-
/** Recordings. */
|
|
194
258
|
recordings?: Recordings;
|
|
195
259
|
}
|
|
196
|
-
/** Recordings. */
|
|
197
260
|
interface Recordings {
|
|
198
261
|
/** Saved Session count. */
|
|
199
262
|
siteSessions?: number | null;
|
|
@@ -209,18 +272,18 @@ interface Recordings {
|
|
|
209
272
|
/** Request for getting the total number of sessions. */
|
|
210
273
|
interface CountSessionsRequest extends CountSessionsRequestPeriodOneOf {
|
|
211
274
|
/** Custom time period with start & end dates. */
|
|
212
|
-
|
|
275
|
+
customPeriod?: CustomPeriod;
|
|
213
276
|
/** Predefined time period. */
|
|
214
|
-
|
|
277
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
215
278
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
216
279
|
timezone?: string | null;
|
|
217
280
|
}
|
|
218
281
|
/** @oneof */
|
|
219
282
|
interface CountSessionsRequestPeriodOneOf {
|
|
220
283
|
/** Custom time period with start & end dates. */
|
|
221
|
-
|
|
284
|
+
customPeriod?: CustomPeriod;
|
|
222
285
|
/** Predefined time period. */
|
|
223
|
-
|
|
286
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
224
287
|
}
|
|
225
288
|
/** Response for getting the total number of sessions. */
|
|
226
289
|
interface CountSessionsResponse {
|
|
@@ -319,6 +382,7 @@ type index_d_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
|
|
|
319
382
|
type index_d_CountSessionsRequest = CountSessionsRequest;
|
|
320
383
|
type index_d_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
|
|
321
384
|
type index_d_CountSessionsResponse = CountSessionsResponse;
|
|
385
|
+
type index_d_CustomPeriod = CustomPeriod;
|
|
322
386
|
type index_d_CustomTimePeriod = CustomTimePeriod;
|
|
323
387
|
type index_d_DeviceType = DeviceType;
|
|
324
388
|
declare const index_d_DeviceType: typeof DeviceType;
|
|
@@ -341,6 +405,9 @@ type index_d_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
|
|
|
341
405
|
type index_d_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
|
|
342
406
|
type index_d_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
|
|
343
407
|
type index_d_NavigationFlowSessionsParams = NavigationFlowSessionsParams;
|
|
408
|
+
type index_d_PredefinedPeriod = PredefinedPeriod;
|
|
409
|
+
type index_d_PredefinedPeriodEnum = PredefinedPeriodEnum;
|
|
410
|
+
declare const index_d_PredefinedPeriodEnum: typeof PredefinedPeriodEnum;
|
|
344
411
|
type index_d_PredefinedTimePeriod = PredefinedTimePeriod;
|
|
345
412
|
declare const index_d_PredefinedTimePeriod: typeof PredefinedTimePeriod;
|
|
346
413
|
type index_d_Recordings = Recordings;
|
|
@@ -350,7 +417,7 @@ declare const index_d_getListSessionsJobResult: typeof getListSessionsJobResult;
|
|
|
350
417
|
declare const index_d_listSessionsAsync: typeof listSessionsAsync;
|
|
351
418
|
declare const index_d_markSessionAsRecorded: typeof markSessionAsRecorded;
|
|
352
419
|
declare namespace index_d {
|
|
353
|
-
export { type index_d_ConversionFunnelSessionsParams as ConversionFunnelSessionsParams, type index_d_CountFunnelSessionsRequest as CountFunnelSessionsRequest, type index_d_CountFunnelSessionsRequestPeriodOneOf as CountFunnelSessionsRequestPeriodOneOf, type index_d_CountFunnelSessionsResponse as CountFunnelSessionsResponse, type index_d_CountSessionsRequest as CountSessionsRequest, type index_d_CountSessionsRequestPeriodOneOf as CountSessionsRequestPeriodOneOf, type index_d_CountSessionsResponse as CountSessionsResponse, type index_d_CustomTimePeriod as CustomTimePeriod, index_d_DeviceType as DeviceType, index_d_FunnelStep as FunnelStep, type index_d_GetListSessionsJobResultOptions as GetListSessionsJobResultOptions, type index_d_GetListSessionsJobResultRequest as GetListSessionsJobResultRequest, type index_d_GetListSessionsJobResultResponse as GetListSessionsJobResultResponse, type index_d_GetListSessionsJobResultResponseNonNullableFields as GetListSessionsJobResultResponseNonNullableFields, type index_d_JobResult as JobResult, index_d_JobStatus as JobStatus, type index_d_ListSessionsAsyncOptions as ListSessionsAsyncOptions, type index_d_ListSessionsAsyncRequest as ListSessionsAsyncRequest, type index_d_ListSessionsAsyncRequestParamsOneOf as ListSessionsAsyncRequestParamsOneOf, type index_d_ListSessionsAsyncRequestPeriodOneOf as ListSessionsAsyncRequestPeriodOneOf, type index_d_ListSessionsAsyncResponse as ListSessionsAsyncResponse, type index_d_ListSessionsAsyncResponseNonNullableFields as ListSessionsAsyncResponseNonNullableFields, type index_d_MarkSessionAsRecordedOptions as MarkSessionAsRecordedOptions, type index_d_MarkSessionAsRecordedRequest as MarkSessionAsRecordedRequest, type index_d_MarkSessionAsRecordedResponse as MarkSessionAsRecordedResponse, type index_d_NavigationFlowSessionsParams as NavigationFlowSessionsParams, index_d_PredefinedTimePeriod as PredefinedTimePeriod, type index_d_Recordings as Recordings, type index_d_Session as Session, type index_d_SessionsByDeviceParams as SessionsByDeviceParams, index_d_getListSessionsJobResult as getListSessionsJobResult, index_d_listSessionsAsync as listSessionsAsync, index_d_markSessionAsRecorded as markSessionAsRecorded };
|
|
420
|
+
export { type index_d_ConversionFunnelSessionsParams as ConversionFunnelSessionsParams, type index_d_CountFunnelSessionsRequest as CountFunnelSessionsRequest, type index_d_CountFunnelSessionsRequestPeriodOneOf as CountFunnelSessionsRequestPeriodOneOf, type index_d_CountFunnelSessionsResponse as CountFunnelSessionsResponse, type index_d_CountSessionsRequest as CountSessionsRequest, type index_d_CountSessionsRequestPeriodOneOf as CountSessionsRequestPeriodOneOf, type index_d_CountSessionsResponse as CountSessionsResponse, type index_d_CustomPeriod as CustomPeriod, type index_d_CustomTimePeriod as CustomTimePeriod, index_d_DeviceType as DeviceType, index_d_FunnelStep as FunnelStep, type index_d_GetListSessionsJobResultOptions as GetListSessionsJobResultOptions, type index_d_GetListSessionsJobResultRequest as GetListSessionsJobResultRequest, type index_d_GetListSessionsJobResultResponse as GetListSessionsJobResultResponse, type index_d_GetListSessionsJobResultResponseNonNullableFields as GetListSessionsJobResultResponseNonNullableFields, type index_d_JobResult as JobResult, index_d_JobStatus as JobStatus, type index_d_ListSessionsAsyncOptions as ListSessionsAsyncOptions, type index_d_ListSessionsAsyncRequest as ListSessionsAsyncRequest, type index_d_ListSessionsAsyncRequestParamsOneOf as ListSessionsAsyncRequestParamsOneOf, type index_d_ListSessionsAsyncRequestPeriodOneOf as ListSessionsAsyncRequestPeriodOneOf, type index_d_ListSessionsAsyncResponse as ListSessionsAsyncResponse, type index_d_ListSessionsAsyncResponseNonNullableFields as ListSessionsAsyncResponseNonNullableFields, type index_d_MarkSessionAsRecordedOptions as MarkSessionAsRecordedOptions, type index_d_MarkSessionAsRecordedRequest as MarkSessionAsRecordedRequest, type index_d_MarkSessionAsRecordedResponse as MarkSessionAsRecordedResponse, type index_d_NavigationFlowSessionsParams as NavigationFlowSessionsParams, type index_d_PredefinedPeriod as PredefinedPeriod, index_d_PredefinedPeriodEnum as PredefinedPeriodEnum, index_d_PredefinedTimePeriod as PredefinedTimePeriod, type index_d_Recordings as Recordings, type index_d_Session as Session, type index_d_SessionsByDeviceParams as SessionsByDeviceParams, index_d_getListSessionsJobResult as getListSessionsJobResult, index_d_listSessionsAsync as listSessionsAsync, index_d_markSessionAsRecorded as markSessionAsRecorded };
|
|
354
421
|
}
|
|
355
422
|
|
|
356
423
|
export { index_d as analyticsSession };
|