@wix/analytics-session 1.0.3 → 1.0.4
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.4",
|
|
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.4"
|
|
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": "a954652b376a7cac198be1b4569512f7ef2bb3d047e4107663406784"
|
|
46
46
|
}
|
|
@@ -175,88 +175,25 @@ 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
|
+
customTimePeriod?: CustomTimePeriod;
|
|
179
179
|
/** Predefined time period. */
|
|
180
|
-
|
|
180
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
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
|
+
customTimePeriod?: CustomTimePeriod;
|
|
188
188
|
/** Predefined time period. */
|
|
189
|
-
|
|
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"
|
|
189
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
255
190
|
}
|
|
256
191
|
/** Response for getting store conversion sessions. */
|
|
257
192
|
interface CountFunnelSessionsResponse {
|
|
193
|
+
/** Recordings. */
|
|
258
194
|
recordings?: Recordings;
|
|
259
195
|
}
|
|
196
|
+
/** Recordings. */
|
|
260
197
|
interface Recordings {
|
|
261
198
|
/** Saved Session count. */
|
|
262
199
|
siteSessions?: number | null;
|
|
@@ -272,18 +209,18 @@ interface Recordings {
|
|
|
272
209
|
/** Request for getting the total number of sessions. */
|
|
273
210
|
interface CountSessionsRequest extends CountSessionsRequestPeriodOneOf {
|
|
274
211
|
/** Custom time period with start & end dates. */
|
|
275
|
-
|
|
212
|
+
customTimePeriod?: CustomTimePeriod;
|
|
276
213
|
/** Predefined time period. */
|
|
277
|
-
|
|
214
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
278
215
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
279
216
|
timezone?: string | null;
|
|
280
217
|
}
|
|
281
218
|
/** @oneof */
|
|
282
219
|
interface CountSessionsRequestPeriodOneOf {
|
|
283
220
|
/** Custom time period with start & end dates. */
|
|
284
|
-
|
|
221
|
+
customTimePeriod?: CustomTimePeriod;
|
|
285
222
|
/** Predefined time period. */
|
|
286
|
-
|
|
223
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
287
224
|
}
|
|
288
225
|
/** Response for getting the total number of sessions. */
|
|
289
226
|
interface CountSessionsResponse {
|
|
@@ -382,7 +319,6 @@ type context_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
|
|
|
382
319
|
type context_CountSessionsRequest = CountSessionsRequest;
|
|
383
320
|
type context_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
|
|
384
321
|
type context_CountSessionsResponse = CountSessionsResponse;
|
|
385
|
-
type context_CustomPeriod = CustomPeriod;
|
|
386
322
|
type context_CustomTimePeriod = CustomTimePeriod;
|
|
387
323
|
type context_DeviceType = DeviceType;
|
|
388
324
|
declare const context_DeviceType: typeof DeviceType;
|
|
@@ -405,9 +341,6 @@ type context_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
|
|
|
405
341
|
type context_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
|
|
406
342
|
type context_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
|
|
407
343
|
type context_NavigationFlowSessionsParams = NavigationFlowSessionsParams;
|
|
408
|
-
type context_PredefinedPeriod = PredefinedPeriod;
|
|
409
|
-
type context_PredefinedPeriodEnum = PredefinedPeriodEnum;
|
|
410
|
-
declare const context_PredefinedPeriodEnum: typeof PredefinedPeriodEnum;
|
|
411
344
|
type context_PredefinedTimePeriod = PredefinedTimePeriod;
|
|
412
345
|
declare const context_PredefinedTimePeriod: typeof PredefinedTimePeriod;
|
|
413
346
|
type context_Recordings = Recordings;
|
|
@@ -417,7 +350,7 @@ declare const context_getListSessionsJobResult: typeof getListSessionsJobResult;
|
|
|
417
350
|
declare const context_listSessionsAsync: typeof listSessionsAsync;
|
|
418
351
|
declare const context_markSessionAsRecorded: typeof markSessionAsRecorded;
|
|
419
352
|
declare namespace context {
|
|
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
|
|
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 };
|
|
421
354
|
}
|
|
422
355
|
|
|
423
356
|
export { context as analyticsSession };
|
|
@@ -175,88 +175,25 @@ 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
|
+
customTimePeriod?: CustomTimePeriod;
|
|
179
179
|
/** Predefined time period. */
|
|
180
|
-
|
|
180
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
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
|
+
customTimePeriod?: CustomTimePeriod;
|
|
188
188
|
/** Predefined time period. */
|
|
189
|
-
|
|
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"
|
|
189
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
255
190
|
}
|
|
256
191
|
/** Response for getting store conversion sessions. */
|
|
257
192
|
interface CountFunnelSessionsResponse {
|
|
193
|
+
/** Recordings. */
|
|
258
194
|
recordings?: Recordings;
|
|
259
195
|
}
|
|
196
|
+
/** Recordings. */
|
|
260
197
|
interface Recordings {
|
|
261
198
|
/** Saved Session count. */
|
|
262
199
|
siteSessions?: number | null;
|
|
@@ -272,18 +209,18 @@ interface Recordings {
|
|
|
272
209
|
/** Request for getting the total number of sessions. */
|
|
273
210
|
interface CountSessionsRequest extends CountSessionsRequestPeriodOneOf {
|
|
274
211
|
/** Custom time period with start & end dates. */
|
|
275
|
-
|
|
212
|
+
customTimePeriod?: CustomTimePeriod;
|
|
276
213
|
/** Predefined time period. */
|
|
277
|
-
|
|
214
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
278
215
|
/** User timezone. If not provided it will be taken from site properties. */
|
|
279
216
|
timezone?: string | null;
|
|
280
217
|
}
|
|
281
218
|
/** @oneof */
|
|
282
219
|
interface CountSessionsRequestPeriodOneOf {
|
|
283
220
|
/** Custom time period with start & end dates. */
|
|
284
|
-
|
|
221
|
+
customTimePeriod?: CustomTimePeriod;
|
|
285
222
|
/** Predefined time period. */
|
|
286
|
-
|
|
223
|
+
predefinedTimePeriod?: PredefinedTimePeriod;
|
|
287
224
|
}
|
|
288
225
|
/** Response for getting the total number of sessions. */
|
|
289
226
|
interface CountSessionsResponse {
|
|
@@ -382,7 +319,6 @@ type index_d_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
|
|
|
382
319
|
type index_d_CountSessionsRequest = CountSessionsRequest;
|
|
383
320
|
type index_d_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
|
|
384
321
|
type index_d_CountSessionsResponse = CountSessionsResponse;
|
|
385
|
-
type index_d_CustomPeriod = CustomPeriod;
|
|
386
322
|
type index_d_CustomTimePeriod = CustomTimePeriod;
|
|
387
323
|
type index_d_DeviceType = DeviceType;
|
|
388
324
|
declare const index_d_DeviceType: typeof DeviceType;
|
|
@@ -405,9 +341,6 @@ type index_d_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
|
|
|
405
341
|
type index_d_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
|
|
406
342
|
type index_d_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
|
|
407
343
|
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;
|
|
411
344
|
type index_d_PredefinedTimePeriod = PredefinedTimePeriod;
|
|
412
345
|
declare const index_d_PredefinedTimePeriod: typeof PredefinedTimePeriod;
|
|
413
346
|
type index_d_Recordings = Recordings;
|
|
@@ -417,7 +350,7 @@ declare const index_d_getListSessionsJobResult: typeof getListSessionsJobResult;
|
|
|
417
350
|
declare const index_d_listSessionsAsync: typeof listSessionsAsync;
|
|
418
351
|
declare const index_d_markSessionAsRecorded: typeof markSessionAsRecorded;
|
|
419
352
|
declare namespace index_d {
|
|
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
|
|
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 };
|
|
421
354
|
}
|
|
422
355
|
|
|
423
356
|
export { index_d as analyticsSession };
|