@wix/analytics-session 1.0.0 → 1.0.1
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.1",
|
|
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.1"
|
|
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": "fdd8fda44cc097c8cebc62bf5a160fd5413b4d5e71be294e87bacf4f"
|
|
46
46
|
}
|
|
@@ -269,6 +269,27 @@ interface Recordings {
|
|
|
269
269
|
/** Saved Converted Sessions */
|
|
270
270
|
convertedSessions?: number | null;
|
|
271
271
|
}
|
|
272
|
+
/** Request for getting the total number of sessions. */
|
|
273
|
+
interface CountSessionsRequest extends CountSessionsRequestPeriodOneOf {
|
|
274
|
+
/** Custom time period with start & end dates. */
|
|
275
|
+
customPeriod?: CustomPeriod;
|
|
276
|
+
/** Predefined time period. */
|
|
277
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
278
|
+
/** User timezone. If not provided it will be taken from site properties. */
|
|
279
|
+
timezone?: string | null;
|
|
280
|
+
}
|
|
281
|
+
/** @oneof */
|
|
282
|
+
interface CountSessionsRequestPeriodOneOf {
|
|
283
|
+
/** Custom time period with start & end dates. */
|
|
284
|
+
customPeriod?: CustomPeriod;
|
|
285
|
+
/** Predefined time period. */
|
|
286
|
+
predefinedPeriod?: PredefinedPeriod;
|
|
287
|
+
}
|
|
288
|
+
/** Response for getting the total number of sessions. */
|
|
289
|
+
interface CountSessionsResponse {
|
|
290
|
+
/** Total number of sessions. */
|
|
291
|
+
sessions?: number;
|
|
292
|
+
}
|
|
272
293
|
/** Mark a browser session as recorded. */
|
|
273
294
|
interface MarkSessionAsRecordedRequest {
|
|
274
295
|
/** Browser session ID. */
|
|
@@ -356,6 +377,9 @@ type index_d_ConversionFunnelSessionsParams = ConversionFunnelSessionsParams;
|
|
|
356
377
|
type index_d_CountFunnelSessionsRequest = CountFunnelSessionsRequest;
|
|
357
378
|
type index_d_CountFunnelSessionsRequestPeriodOneOf = CountFunnelSessionsRequestPeriodOneOf;
|
|
358
379
|
type index_d_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
|
|
380
|
+
type index_d_CountSessionsRequest = CountSessionsRequest;
|
|
381
|
+
type index_d_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
|
|
382
|
+
type index_d_CountSessionsResponse = CountSessionsResponse;
|
|
359
383
|
type index_d_CustomPeriod = CustomPeriod;
|
|
360
384
|
type index_d_CustomTimePeriod = CustomTimePeriod;
|
|
361
385
|
type index_d_DeviceType = DeviceType;
|
|
@@ -392,7 +416,7 @@ declare const index_d_getListSessionsJobResult: typeof getListSessionsJobResult;
|
|
|
392
416
|
declare const index_d_listSessionsAsync: typeof listSessionsAsync;
|
|
393
417
|
declare const index_d_markSessionAsRecorded: typeof markSessionAsRecorded;
|
|
394
418
|
declare namespace index_d {
|
|
395
|
-
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_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___metadata as __metadata, index_d_getListSessionsJobResult as getListSessionsJobResult, index_d_listSessionsAsync as listSessionsAsync, index_d_markSessionAsRecorded as markSessionAsRecorded };
|
|
419
|
+
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___metadata as __metadata, index_d_getListSessionsJobResult as getListSessionsJobResult, index_d_listSessionsAsync as listSessionsAsync, index_d_markSessionAsRecorded as markSessionAsRecorded };
|
|
396
420
|
}
|
|
397
421
|
|
|
398
422
|
export { index_d as analyticsSession };
|