@wix/analytics-session 1.0.5 → 1.0.6

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.5",
3
+ "version": "1.0.6",
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.5"
21
+ "@wix/analytics-session_analytics-session": "1.0.6"
22
22
  },
23
23
  "devDependencies": {
24
24
  "glob": "^10.4.1",
@@ -42,5 +42,5 @@
42
42
  "fqdn": ""
43
43
  }
44
44
  },
45
- "falconPackageHash": "4c776f8a443d578791603a4b9e5aa9c0d76a823a63090ba728598912"
45
+ "falconPackageHash": "bf6532fa7f30d6ba7305a6982ec848e5869b32ea6dd4f695230218eb"
46
46
  }
@@ -141,11 +141,11 @@ interface ListSessionsAsyncResponse {
141
141
  /** Get list sessions job result request. */
142
142
  interface GetListSessionsJobResultRequest {
143
143
  /** List sessions job ID. */
144
- jobId?: string;
144
+ jobId: string;
145
145
  /** Number of items to load. */
146
- limit?: number;
146
+ limit: number;
147
147
  /** Number of items to skip in the current sort order. */
148
- offset?: number;
148
+ offset: number;
149
149
  }
150
150
  /** Get list sessions job result response. */
151
151
  interface GetListSessionsJobResultResponse {
@@ -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
- customPeriod?: CustomPeriod;
178
+ customTimePeriod?: CustomTimePeriod;
179
179
  /** Predefined time period. */
180
- predefinedPeriod?: PredefinedPeriod;
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
- customPeriod?: CustomPeriod;
187
+ customTimePeriod?: CustomTimePeriod;
188
188
  /** Predefined time period. */
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"
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
- customPeriod?: CustomPeriod;
212
+ customTimePeriod?: CustomTimePeriod;
276
213
  /** Predefined time period. */
277
- predefinedPeriod?: PredefinedPeriod;
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
- customPeriod?: CustomPeriod;
221
+ customTimePeriod?: CustomTimePeriod;
285
222
  /** Predefined time period. */
286
- predefinedPeriod?: PredefinedPeriod;
223
+ predefinedTimePeriod?: PredefinedTimePeriod;
287
224
  }
288
225
  /** Response for getting the total number of sessions. */
289
226
  interface CountSessionsResponse {
@@ -293,7 +230,7 @@ interface CountSessionsResponse {
293
230
  /** Mark a browser session as recorded. */
294
231
  interface MarkSessionAsRecordedRequest {
295
232
  /** Browser session ID. */
296
- sessionId?: string;
233
+ sessionId: string;
297
234
  }
298
235
  /** Mark a browser session as recorded. */
299
236
  interface MarkSessionAsRecordedResponse {
@@ -323,16 +260,10 @@ interface ListSessionsAsyncOptions extends ListSessionsAsyncRequestPeriodOneOf,
323
260
  deviceType?: SessionsByDeviceParams;
324
261
  }
325
262
  interface GetListSessionsJobResultOptions {
326
- /** List sessions job ID. */
327
- jobId?: string;
328
263
  /** Number of items to load. */
329
- limit?: number;
264
+ limit: number;
330
265
  /** Number of items to skip in the current sort order. */
331
- offset?: number;
332
- }
333
- interface MarkSessionAsRecordedOptions {
334
- /** Browser session ID. */
335
- sessionId?: string;
266
+ offset: number;
336
267
  }
337
268
 
338
269
  type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
@@ -382,7 +313,6 @@ type context_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
382
313
  type context_CountSessionsRequest = CountSessionsRequest;
383
314
  type context_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
384
315
  type context_CountSessionsResponse = CountSessionsResponse;
385
- type context_CustomPeriod = CustomPeriod;
386
316
  type context_CustomTimePeriod = CustomTimePeriod;
387
317
  type context_DeviceType = DeviceType;
388
318
  declare const context_DeviceType: typeof DeviceType;
@@ -401,13 +331,9 @@ type context_ListSessionsAsyncRequestParamsOneOf = ListSessionsAsyncRequestParam
401
331
  type context_ListSessionsAsyncRequestPeriodOneOf = ListSessionsAsyncRequestPeriodOneOf;
402
332
  type context_ListSessionsAsyncResponse = ListSessionsAsyncResponse;
403
333
  type context_ListSessionsAsyncResponseNonNullableFields = ListSessionsAsyncResponseNonNullableFields;
404
- type context_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
405
334
  type context_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
406
335
  type context_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
407
336
  type context_NavigationFlowSessionsParams = NavigationFlowSessionsParams;
408
- type context_PredefinedPeriod = PredefinedPeriod;
409
- type context_PredefinedPeriodEnum = PredefinedPeriodEnum;
410
- declare const context_PredefinedPeriodEnum: typeof PredefinedPeriodEnum;
411
337
  type context_PredefinedTimePeriod = PredefinedTimePeriod;
412
338
  declare const context_PredefinedTimePeriod: typeof PredefinedTimePeriod;
413
339
  type context_Recordings = Recordings;
@@ -417,7 +343,7 @@ declare const context_getListSessionsJobResult: typeof getListSessionsJobResult;
417
343
  declare const context_listSessionsAsync: typeof listSessionsAsync;
418
344
  declare const context_markSessionAsRecorded: typeof markSessionAsRecorded;
419
345
  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 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 };
346
+ 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 };
421
347
  }
422
348
 
423
349
  export { context as analyticsSession };
@@ -141,11 +141,11 @@ interface ListSessionsAsyncResponse {
141
141
  /** Get list sessions job result request. */
142
142
  interface GetListSessionsJobResultRequest {
143
143
  /** List sessions job ID. */
144
- jobId?: string;
144
+ jobId: string;
145
145
  /** Number of items to load. */
146
- limit?: number;
146
+ limit: number;
147
147
  /** Number of items to skip in the current sort order. */
148
- offset?: number;
148
+ offset: number;
149
149
  }
150
150
  /** Get list sessions job result response. */
151
151
  interface GetListSessionsJobResultResponse {
@@ -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
- customPeriod?: CustomPeriod;
178
+ customTimePeriod?: CustomTimePeriod;
179
179
  /** Predefined time period. */
180
- predefinedPeriod?: PredefinedPeriod;
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
- customPeriod?: CustomPeriod;
187
+ customTimePeriod?: CustomTimePeriod;
188
188
  /** Predefined time period. */
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"
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
- customPeriod?: CustomPeriod;
212
+ customTimePeriod?: CustomTimePeriod;
276
213
  /** Predefined time period. */
277
- predefinedPeriod?: PredefinedPeriod;
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
- customPeriod?: CustomPeriod;
221
+ customTimePeriod?: CustomTimePeriod;
285
222
  /** Predefined time period. */
286
- predefinedPeriod?: PredefinedPeriod;
223
+ predefinedTimePeriod?: PredefinedTimePeriod;
287
224
  }
288
225
  /** Response for getting the total number of sessions. */
289
226
  interface CountSessionsResponse {
@@ -293,7 +230,7 @@ interface CountSessionsResponse {
293
230
  /** Mark a browser session as recorded. */
294
231
  interface MarkSessionAsRecordedRequest {
295
232
  /** Browser session ID. */
296
- sessionId?: string;
233
+ sessionId: string;
297
234
  }
298
235
  /** Mark a browser session as recorded. */
299
236
  interface MarkSessionAsRecordedResponse {
@@ -323,16 +260,10 @@ interface ListSessionsAsyncOptions extends ListSessionsAsyncRequestPeriodOneOf,
323
260
  deviceType?: SessionsByDeviceParams;
324
261
  }
325
262
  interface GetListSessionsJobResultOptions {
326
- /** List sessions job ID. */
327
- jobId?: string;
328
263
  /** Number of items to load. */
329
- limit?: number;
264
+ limit: number;
330
265
  /** Number of items to skip in the current sort order. */
331
- offset?: number;
332
- }
333
- interface MarkSessionAsRecordedOptions {
334
- /** Browser session ID. */
335
- sessionId?: string;
266
+ offset: number;
336
267
  }
337
268
 
338
269
  type RESTFunctionDescriptor<T extends (...args: any[]) => any = (...args: any[]) => any> = (httpClient: HttpClient) => T;
@@ -382,7 +313,6 @@ type index_d_CountFunnelSessionsResponse = CountFunnelSessionsResponse;
382
313
  type index_d_CountSessionsRequest = CountSessionsRequest;
383
314
  type index_d_CountSessionsRequestPeriodOneOf = CountSessionsRequestPeriodOneOf;
384
315
  type index_d_CountSessionsResponse = CountSessionsResponse;
385
- type index_d_CustomPeriod = CustomPeriod;
386
316
  type index_d_CustomTimePeriod = CustomTimePeriod;
387
317
  type index_d_DeviceType = DeviceType;
388
318
  declare const index_d_DeviceType: typeof DeviceType;
@@ -401,13 +331,9 @@ type index_d_ListSessionsAsyncRequestParamsOneOf = ListSessionsAsyncRequestParam
401
331
  type index_d_ListSessionsAsyncRequestPeriodOneOf = ListSessionsAsyncRequestPeriodOneOf;
402
332
  type index_d_ListSessionsAsyncResponse = ListSessionsAsyncResponse;
403
333
  type index_d_ListSessionsAsyncResponseNonNullableFields = ListSessionsAsyncResponseNonNullableFields;
404
- type index_d_MarkSessionAsRecordedOptions = MarkSessionAsRecordedOptions;
405
334
  type index_d_MarkSessionAsRecordedRequest = MarkSessionAsRecordedRequest;
406
335
  type index_d_MarkSessionAsRecordedResponse = MarkSessionAsRecordedResponse;
407
336
  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
337
  type index_d_PredefinedTimePeriod = PredefinedTimePeriod;
412
338
  declare const index_d_PredefinedTimePeriod: typeof PredefinedTimePeriod;
413
339
  type index_d_Recordings = Recordings;
@@ -417,7 +343,7 @@ declare const index_d_getListSessionsJobResult: typeof getListSessionsJobResult;
417
343
  declare const index_d_listSessionsAsync: typeof listSessionsAsync;
418
344
  declare const index_d_markSessionAsRecorded: typeof markSessionAsRecorded;
419
345
  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 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 };
346
+ 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 };
421
347
  }
422
348
 
423
349
  export { index_d as analyticsSession };
@@ -137,11 +137,11 @@ interface ListSessionsAsyncResponse$1 {
137
137
  /** Get list sessions job result request. */
138
138
  interface GetListSessionsJobResultRequest$1 {
139
139
  /** List sessions job ID. */
140
- jobId?: string;
140
+ jobId: string;
141
141
  /** Number of items to load. */
142
- limit?: number;
142
+ limit: number;
143
143
  /** Number of items to skip in the current sort order. */
144
- offset?: number;
144
+ offset: number;
145
145
  }
146
146
  /** Get list sessions job result response. */
147
147
  interface GetListSessionsJobResultResponse$1 {
@@ -171,7 +171,7 @@ declare enum JobStatus$1 {
171
171
  /** Mark a browser session as recorded. */
172
172
  interface MarkSessionAsRecordedRequest$1 {
173
173
  /** Browser session ID. */
174
- sessionId?: string;
174
+ sessionId: string;
175
175
  }
176
176
  /** Mark a browser session as recorded. */
177
177
  interface MarkSessionAsRecordedResponse$1 {
@@ -326,11 +326,11 @@ interface ListSessionsAsyncResponse {
326
326
  /** Get list sessions job result request. */
327
327
  interface GetListSessionsJobResultRequest {
328
328
  /** List sessions job ID. */
329
- jobId?: string;
329
+ jobId: string;
330
330
  /** Number of items to load. */
331
- limit?: number;
331
+ limit: number;
332
332
  /** Number of items to skip in the current sort order. */
333
- offset?: number;
333
+ offset: number;
334
334
  }
335
335
  /** Get list sessions job result response. */
336
336
  interface GetListSessionsJobResultResponse {
@@ -360,7 +360,7 @@ declare enum JobStatus {
360
360
  /** Mark a browser session as recorded. */
361
361
  interface MarkSessionAsRecordedRequest {
362
362
  /** Browser session ID. */
363
- sessionId?: string;
363
+ sessionId: string;
364
364
  }
365
365
  /** Mark a browser session as recorded. */
366
366
  interface MarkSessionAsRecordedResponse {