@wix/analytics-session 1.0.11 → 1.0.12

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.
@@ -1 +1,2 @@
1
- export * as analyticsSession from '@wix/analytics-session_analytics-session';
1
+ import * as analyticsSession from '@wix/analytics-session_analytics-session';
2
+ export { analyticsSession };
@@ -24,5 +24,6 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.analyticsSession = void 0;
27
- exports.analyticsSession = __importStar(require("@wix/analytics-session_analytics-session"));
27
+ const analyticsSession = __importStar(require("@wix/analytics-session_analytics-session"));
28
+ exports.analyticsSession = analyticsSession;
28
29
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6FAA6E"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2FAA6E;AAEpE,4CAAgB"}
@@ -1 +1,2 @@
1
- export * as analyticsSession from '@wix/analytics-session_analytics-session';
1
+ import * as analyticsSession from '@wix/analytics-session_analytics-session';
2
+ export { analyticsSession };
package/build/es/index.js CHANGED
@@ -1,2 +1,3 @@
1
- export * as analyticsSession from '@wix/analytics-session_analytics-session';
1
+ import * as analyticsSession from '@wix/analytics-session_analytics-session';
2
+ export { analyticsSession };
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,gBAAgB,MAAM,0CAA0C,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,gBAAgB,MAAM,0CAA0C,CAAC;AAE7E,OAAO,EAAE,gBAAgB,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/analytics-session",
3
- "version": "1.0.11",
3
+ "version": "1.0.12",
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.11"
21
+ "@wix/analytics-session_analytics-session": "1.0.12"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -27,8 +27,9 @@
27
27
  "typescript": "^5.3.2"
28
28
  },
29
29
  "scripts": {
30
- "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
30
+ "build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles && npm run build:validate-dts",
31
31
  "build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
32
+ "build:validate-dts": "tsc type-bundles/*.d.ts --noEmit",
32
33
  "test": ":"
33
34
  },
34
35
  "wix": {
@@ -42,5 +43,5 @@
42
43
  "fqdn": ""
43
44
  }
44
45
  },
45
- "falconPackageHash": "24ea12da1427731b8d74b4bfa43f12863b9a1075f433a5279a3004cc"
46
+ "falconPackageHash": "92064be5d853034db730255bfe432362d8d301407ce0c26f7ee9fbbf"
46
47
  }
@@ -1,3 +1,37 @@
1
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
+ interface HttpClient {
3
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4
+ fetchWithAuth: typeof fetch;
5
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6
+ }
7
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
+ type HttpResponse<T = any> = {
9
+ data: T;
10
+ status: number;
11
+ statusText: string;
12
+ headers: any;
13
+ request?: any;
14
+ };
15
+ type RequestOptions<_TResponse = any, Data = any> = {
16
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
+ url: string;
18
+ data?: Data;
19
+ params?: URLSearchParams;
20
+ } & APIMetadata;
21
+ type APIMetadata = {
22
+ methodFqn?: string;
23
+ entityFqdn?: string;
24
+ packageName?: string;
25
+ };
26
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
27
+
28
+ declare global {
29
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
30
+ interface SymbolConstructor {
31
+ readonly observable: symbol;
32
+ }
33
+ }
34
+
1
35
  interface Session {
2
36
  /** Session ID. */
3
37
  _id?: string;
@@ -268,45 +302,49 @@ interface GetListSessionsJobResultOptions {
268
302
  offset: number;
269
303
  }
270
304
 
271
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
272
- interface HttpClient {
273
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
274
- fetchWithAuth: typeof fetch;
275
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
305
+ declare function listSessionsAsync$1(httpClient: HttpClient): ListSessionsAsyncSignature;
306
+ interface ListSessionsAsyncSignature {
307
+ /**
308
+ * Start an async job to retrieve a list of session IDs, given the provided filters. The following filters **must** be passed:
309
+ * - Time period, either predefined or custom.
310
+ * - Session filter, either navigation flow (page interactions), conversion funnel steps, or device type.
311
+ * @param - Filter options. The following filters **must** be passed:
312
+ *
313
+ * - Time period, either predefined or custom.
314
+ *
315
+ * - Session filter, either navigation flow (page interactions), conversion funnel steps, or device type.
316
+ * @returns List sessions async response.
317
+ */
318
+ (options?: ListSessionsAsyncOptions | undefined): Promise<ListSessionsAsyncResponse & ListSessionsAsyncResponseNonNullableFields>;
276
319
  }
277
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
278
- type HttpResponse<T = any> = {
279
- data: T;
280
- status: number;
281
- statusText: string;
282
- headers: any;
283
- request?: any;
284
- };
285
- type RequestOptions<_TResponse = any, Data = any> = {
286
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
287
- url: string;
288
- data?: Data;
289
- params?: URLSearchParams;
290
- } & APIMetadata;
291
- type APIMetadata = {
292
- methodFqn?: string;
293
- entityFqdn?: string;
294
- packageName?: string;
295
- };
296
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
297
-
298
- declare global {
299
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
300
- interface SymbolConstructor {
301
- readonly observable: symbol;
302
- }
320
+ declare function getListSessionsJobResult$1(httpClient: HttpClient): GetListSessionsJobResultSignature;
321
+ interface GetListSessionsJobResultSignature {
322
+ /**
323
+ * Retrieves the job status and a list of session IDs, if ready.
324
+ * @param - List sessions job ID.
325
+ * @param - Field options. The `limit` and `offset` filters **must** be passed.
326
+ * @returns Get list sessions job result response.
327
+ */
328
+ (jobId: string, options: GetListSessionsJobResultOptions): Promise<GetListSessionsJobResultResponse & GetListSessionsJobResultResponseNonNullableFields>;
329
+ }
330
+ declare function markSessionAsRecorded$1(httpClient: HttpClient): MarkSessionAsRecordedSignature;
331
+ interface MarkSessionAsRecordedSignature {
332
+ /**
333
+ * Marks a browser session as recorded.
334
+ * @param - Browser session ID.
335
+ * @returns Mark a browser session as recorded.
336
+ */
337
+ (sessionId: string): Promise<void>;
303
338
  }
304
339
 
305
340
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
306
341
 
307
- declare const listSessionsAsync: ReturnType<typeof createRESTModule<typeof publicListSessionsAsync>>;
308
- declare const getListSessionsJobResult: ReturnType<typeof createRESTModule<typeof publicGetListSessionsJobResult>>;
309
- declare const markSessionAsRecorded: ReturnType<typeof createRESTModule<typeof publicMarkSessionAsRecorded>>;
342
+ type _publicListSessionsAsyncType = typeof listSessionsAsync$1;
343
+ declare const listSessionsAsync: ReturnType<typeof createRESTModule<_publicListSessionsAsyncType>>;
344
+ type _publicGetListSessionsJobResultType = typeof getListSessionsJobResult$1;
345
+ declare const getListSessionsJobResult: ReturnType<typeof createRESTModule<_publicGetListSessionsJobResultType>>;
346
+ type _publicMarkSessionAsRecordedType = typeof markSessionAsRecorded$1;
347
+ declare const markSessionAsRecorded: ReturnType<typeof createRESTModule<_publicMarkSessionAsRecordedType>>;
310
348
 
311
349
  type context_ConversionFunnelSessionsParams = ConversionFunnelSessionsParams;
312
350
  type context_CountFunnelSessionsRequest = CountFunnelSessionsRequest;
@@ -341,11 +379,14 @@ declare const context_PredefinedTimePeriod: typeof PredefinedTimePeriod;
341
379
  type context_Recordings = Recordings;
342
380
  type context_Session = Session;
343
381
  type context_SessionsByDeviceParams = SessionsByDeviceParams;
382
+ type context__publicGetListSessionsJobResultType = _publicGetListSessionsJobResultType;
383
+ type context__publicListSessionsAsyncType = _publicListSessionsAsyncType;
384
+ type context__publicMarkSessionAsRecordedType = _publicMarkSessionAsRecordedType;
344
385
  declare const context_getListSessionsJobResult: typeof getListSessionsJobResult;
345
386
  declare const context_listSessionsAsync: typeof listSessionsAsync;
346
387
  declare const context_markSessionAsRecorded: typeof markSessionAsRecorded;
347
388
  declare namespace context {
348
- 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_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 };
389
+ 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_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, type context__publicGetListSessionsJobResultType as _publicGetListSessionsJobResultType, type context__publicListSessionsAsyncType as _publicListSessionsAsyncType, type context__publicMarkSessionAsRecordedType as _publicMarkSessionAsRecordedType, context_getListSessionsJobResult as getListSessionsJobResult, context_listSessionsAsync as listSessionsAsync, context_markSessionAsRecorded as markSessionAsRecorded };
349
390
  }
350
391
 
351
392
  export { context as analyticsSession };
@@ -1,3 +1,37 @@
1
+ type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
2
+ interface HttpClient {
3
+ request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
4
+ fetchWithAuth: typeof fetch;
5
+ wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
6
+ }
7
+ type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
8
+ type HttpResponse<T = any> = {
9
+ data: T;
10
+ status: number;
11
+ statusText: string;
12
+ headers: any;
13
+ request?: any;
14
+ };
15
+ type RequestOptions<_TResponse = any, Data = any> = {
16
+ method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
17
+ url: string;
18
+ data?: Data;
19
+ params?: URLSearchParams;
20
+ } & APIMetadata;
21
+ type APIMetadata = {
22
+ methodFqn?: string;
23
+ entityFqdn?: string;
24
+ packageName?: string;
25
+ };
26
+ type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
27
+
28
+ declare global {
29
+ // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
30
+ interface SymbolConstructor {
31
+ readonly observable: symbol;
32
+ }
33
+ }
34
+
1
35
  interface Session {
2
36
  /** Session ID. */
3
37
  _id?: string;
@@ -268,45 +302,49 @@ interface GetListSessionsJobResultOptions {
268
302
  offset: number;
269
303
  }
270
304
 
271
- type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
272
- interface HttpClient {
273
- request<TResponse, TData = any>(req: RequestOptionsFactory<TResponse, TData>): Promise<HttpResponse<TResponse>>;
274
- fetchWithAuth: typeof fetch;
275
- wixAPIFetch: (relativeUrl: string, options: RequestInit) => Promise<Response>;
305
+ declare function listSessionsAsync$1(httpClient: HttpClient): ListSessionsAsyncSignature;
306
+ interface ListSessionsAsyncSignature {
307
+ /**
308
+ * Start an async job to retrieve a list of session IDs, given the provided filters. The following filters **must** be passed:
309
+ * - Time period, either predefined or custom.
310
+ * - Session filter, either navigation flow (page interactions), conversion funnel steps, or device type.
311
+ * @param - Filter options. The following filters **must** be passed:
312
+ *
313
+ * - Time period, either predefined or custom.
314
+ *
315
+ * - Session filter, either navigation flow (page interactions), conversion funnel steps, or device type.
316
+ * @returns List sessions async response.
317
+ */
318
+ (options?: ListSessionsAsyncOptions | undefined): Promise<ListSessionsAsyncResponse & ListSessionsAsyncResponseNonNullableFields>;
276
319
  }
277
- type RequestOptionsFactory<TResponse = any, TData = any> = (context: any) => RequestOptions<TResponse, TData>;
278
- type HttpResponse<T = any> = {
279
- data: T;
280
- status: number;
281
- statusText: string;
282
- headers: any;
283
- request?: any;
284
- };
285
- type RequestOptions<_TResponse = any, Data = any> = {
286
- method: 'POST' | 'GET' | 'PUT' | 'DELETE' | 'PATCH' | 'HEAD' | 'OPTIONS';
287
- url: string;
288
- data?: Data;
289
- params?: URLSearchParams;
290
- } & APIMetadata;
291
- type APIMetadata = {
292
- methodFqn?: string;
293
- entityFqdn?: string;
294
- packageName?: string;
295
- };
296
- type BuildRESTFunction<T extends RESTFunctionDescriptor> = T extends RESTFunctionDescriptor<infer U> ? U : never;
297
-
298
- declare global {
299
- // eslint-disable-next-line @typescript-eslint/consistent-type-definitions -- It has to be an `interface` so that it can be merged.
300
- interface SymbolConstructor {
301
- readonly observable: symbol;
302
- }
320
+ declare function getListSessionsJobResult$1(httpClient: HttpClient): GetListSessionsJobResultSignature;
321
+ interface GetListSessionsJobResultSignature {
322
+ /**
323
+ * Retrieves the job status and a list of session IDs, if ready.
324
+ * @param - List sessions job ID.
325
+ * @param - Field options. The `limit` and `offset` filters **must** be passed.
326
+ * @returns Get list sessions job result response.
327
+ */
328
+ (jobId: string, options: GetListSessionsJobResultOptions): Promise<GetListSessionsJobResultResponse & GetListSessionsJobResultResponseNonNullableFields>;
329
+ }
330
+ declare function markSessionAsRecorded$1(httpClient: HttpClient): MarkSessionAsRecordedSignature;
331
+ interface MarkSessionAsRecordedSignature {
332
+ /**
333
+ * Marks a browser session as recorded.
334
+ * @param - Browser session ID.
335
+ * @returns Mark a browser session as recorded.
336
+ */
337
+ (sessionId: string): Promise<void>;
303
338
  }
304
339
 
305
340
  declare function createRESTModule<T extends RESTFunctionDescriptor>(descriptor: T, elevated?: boolean): BuildRESTFunction<T> & T;
306
341
 
307
- declare const listSessionsAsync: ReturnType<typeof createRESTModule<typeof publicListSessionsAsync>>;
308
- declare const getListSessionsJobResult: ReturnType<typeof createRESTModule<typeof publicGetListSessionsJobResult>>;
309
- declare const markSessionAsRecorded: ReturnType<typeof createRESTModule<typeof publicMarkSessionAsRecorded>>;
342
+ type _publicListSessionsAsyncType = typeof listSessionsAsync$1;
343
+ declare const listSessionsAsync: ReturnType<typeof createRESTModule<_publicListSessionsAsyncType>>;
344
+ type _publicGetListSessionsJobResultType = typeof getListSessionsJobResult$1;
345
+ declare const getListSessionsJobResult: ReturnType<typeof createRESTModule<_publicGetListSessionsJobResultType>>;
346
+ type _publicMarkSessionAsRecordedType = typeof markSessionAsRecorded$1;
347
+ declare const markSessionAsRecorded: ReturnType<typeof createRESTModule<_publicMarkSessionAsRecordedType>>;
310
348
 
311
349
  type index_d_ConversionFunnelSessionsParams = ConversionFunnelSessionsParams;
312
350
  type index_d_CountFunnelSessionsRequest = CountFunnelSessionsRequest;
@@ -341,11 +379,14 @@ declare const index_d_PredefinedTimePeriod: typeof PredefinedTimePeriod;
341
379
  type index_d_Recordings = Recordings;
342
380
  type index_d_Session = Session;
343
381
  type index_d_SessionsByDeviceParams = SessionsByDeviceParams;
382
+ type index_d__publicGetListSessionsJobResultType = _publicGetListSessionsJobResultType;
383
+ type index_d__publicListSessionsAsyncType = _publicListSessionsAsyncType;
384
+ type index_d__publicMarkSessionAsRecordedType = _publicMarkSessionAsRecordedType;
344
385
  declare const index_d_getListSessionsJobResult: typeof getListSessionsJobResult;
345
386
  declare const index_d_listSessionsAsync: typeof listSessionsAsync;
346
387
  declare const index_d_markSessionAsRecorded: typeof markSessionAsRecorded;
347
388
  declare namespace index_d {
348
- 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_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 };
389
+ 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_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, type index_d__publicGetListSessionsJobResultType as _publicGetListSessionsJobResultType, type index_d__publicListSessionsAsyncType as _publicListSessionsAsyncType, type index_d__publicMarkSessionAsRecordedType as _publicMarkSessionAsRecordedType, index_d_getListSessionsJobResult as getListSessionsJobResult, index_d_listSessionsAsync as listSessionsAsync, index_d_markSessionAsRecorded as markSessionAsRecorded };
349
390
  }
350
391
 
351
392
  export { index_d as analyticsSession };