@algolia/client-insights 5.27.0 → 5.28.0
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/README.md +4 -4
- package/dist/browser.d.ts +55 -55
- package/dist/builds/browser.js +1 -1
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +1 -1
- package/dist/builds/fetch.js +1 -1
- package/dist/builds/fetch.js.map +1 -1
- package/dist/builds/node.cjs +1 -1
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +1 -1
- package/dist/builds/node.js.map +1 -1
- package/dist/builds/worker.js +1 -1
- package/dist/builds/worker.js.map +1 -1
- package/dist/fetch.d.ts +55 -55
- package/dist/node.d.cts +55 -55
- package/dist/node.d.ts +55 -55
- package/dist/src/insightsClient.cjs +1 -1
- package/dist/src/insightsClient.cjs.map +1 -1
- package/dist/src/insightsClient.js +1 -1
- package/dist/src/insightsClient.js.map +1 -1
- package/dist/worker.d.ts +55 -55
- package/package.json +7 -7
package/dist/node.d.cts
CHANGED
|
@@ -8,11 +8,11 @@ type EventsResponse = {
|
|
|
8
8
|
/**
|
|
9
9
|
* Details about the response, such as error messages.
|
|
10
10
|
*/
|
|
11
|
-
message?: string;
|
|
11
|
+
message?: string | undefined;
|
|
12
12
|
/**
|
|
13
13
|
* The HTTP status code of the response.
|
|
14
14
|
*/
|
|
15
|
-
status?: number;
|
|
15
|
+
status?: number | undefined;
|
|
16
16
|
};
|
|
17
17
|
|
|
18
18
|
type AddToCartEvent = 'addToCart';
|
|
@@ -30,12 +30,12 @@ type Discount = number | string;
|
|
|
30
30
|
type Price = number | string;
|
|
31
31
|
|
|
32
32
|
type ObjectData = {
|
|
33
|
-
price?: Price;
|
|
33
|
+
price?: Price | undefined;
|
|
34
34
|
/**
|
|
35
35
|
* Quantity of a product that has been purchased or added to the cart. The total purchase value is the sum of `quantity` multiplied with the `price` for each purchased item.
|
|
36
36
|
*/
|
|
37
|
-
quantity?: number;
|
|
38
|
-
discount?: Discount;
|
|
37
|
+
quantity?: number | undefined;
|
|
38
|
+
discount?: Discount | undefined;
|
|
39
39
|
};
|
|
40
40
|
|
|
41
41
|
/**
|
|
@@ -68,33 +68,33 @@ type AddedToCartObjectIDs = {
|
|
|
68
68
|
/**
|
|
69
69
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
70
70
|
*/
|
|
71
|
-
authenticatedUserToken?: string;
|
|
71
|
+
authenticatedUserToken?: string | undefined;
|
|
72
72
|
/**
|
|
73
73
|
* Three-letter [currency code](https://www.iso.org/iso-4217-currency-codes.html).
|
|
74
74
|
*/
|
|
75
|
-
currency?: string;
|
|
75
|
+
currency?: string | undefined;
|
|
76
76
|
/**
|
|
77
77
|
* Extra information about the records involved in a purchase or add-to-cart event. If specified, it must have the same length as `objectIDs`.
|
|
78
78
|
*/
|
|
79
|
-
objectData?: Array<ObjectData
|
|
79
|
+
objectData?: Array<ObjectData> | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
82
82
|
*/
|
|
83
|
-
timestamp?: number;
|
|
84
|
-
value?: Value;
|
|
83
|
+
timestamp?: number | undefined;
|
|
84
|
+
value?: Value | undefined;
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
type ObjectDataAfterSearch = {
|
|
88
88
|
/**
|
|
89
89
|
* Unique identifier for a search query, used to track purchase events with multiple records that originate from different searches.
|
|
90
90
|
*/
|
|
91
|
-
queryID?: string;
|
|
92
|
-
price?: Price;
|
|
91
|
+
queryID?: string | undefined;
|
|
92
|
+
price?: Price | undefined;
|
|
93
93
|
/**
|
|
94
94
|
* Quantity of a product that has been purchased or added to the cart. The total purchase value is the sum of `quantity` multiplied with the `price` for each purchased item.
|
|
95
95
|
*/
|
|
96
|
-
quantity?: number;
|
|
97
|
-
discount?: Discount;
|
|
96
|
+
quantity?: number | undefined;
|
|
97
|
+
discount?: Discount | undefined;
|
|
98
98
|
};
|
|
99
99
|
|
|
100
100
|
/**
|
|
@@ -126,20 +126,20 @@ type AddedToCartObjectIDsAfterSearch = {
|
|
|
126
126
|
/**
|
|
127
127
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
128
128
|
*/
|
|
129
|
-
authenticatedUserToken?: string;
|
|
129
|
+
authenticatedUserToken?: string | undefined;
|
|
130
130
|
/**
|
|
131
131
|
* Three-letter [currency code](https://www.iso.org/iso-4217-currency-codes.html).
|
|
132
132
|
*/
|
|
133
|
-
currency?: string;
|
|
133
|
+
currency?: string | undefined;
|
|
134
134
|
/**
|
|
135
135
|
* Extra information about the records involved in a purchase or add-to-cart events. If provided, it must be the same length as `objectIDs`.
|
|
136
136
|
*/
|
|
137
|
-
objectData?: Array<ObjectDataAfterSearch
|
|
137
|
+
objectData?: Array<ObjectDataAfterSearch> | undefined;
|
|
138
138
|
/**
|
|
139
139
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
140
140
|
*/
|
|
141
|
-
timestamp?: number;
|
|
142
|
-
value?: Value;
|
|
141
|
+
timestamp?: number | undefined;
|
|
142
|
+
value?: Value | undefined;
|
|
143
143
|
};
|
|
144
144
|
|
|
145
145
|
type ClickEvent = 'click';
|
|
@@ -168,11 +168,11 @@ type ClickedFilters = {
|
|
|
168
168
|
/**
|
|
169
169
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
170
170
|
*/
|
|
171
|
-
authenticatedUserToken?: string;
|
|
171
|
+
authenticatedUserToken?: string | undefined;
|
|
172
172
|
/**
|
|
173
173
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
174
174
|
*/
|
|
175
|
-
timestamp?: number;
|
|
175
|
+
timestamp?: number | undefined;
|
|
176
176
|
};
|
|
177
177
|
|
|
178
178
|
/**
|
|
@@ -199,11 +199,11 @@ type ClickedObjectIDs = {
|
|
|
199
199
|
/**
|
|
200
200
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
201
201
|
*/
|
|
202
|
-
authenticatedUserToken?: string;
|
|
202
|
+
authenticatedUserToken?: string | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
205
205
|
*/
|
|
206
|
-
timestamp?: number;
|
|
206
|
+
timestamp?: number | undefined;
|
|
207
207
|
};
|
|
208
208
|
|
|
209
209
|
/**
|
|
@@ -238,11 +238,11 @@ type ClickedObjectIDsAfterSearch = {
|
|
|
238
238
|
/**
|
|
239
239
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
240
240
|
*/
|
|
241
|
-
authenticatedUserToken?: string;
|
|
241
|
+
authenticatedUserToken?: string | undefined;
|
|
242
242
|
/**
|
|
243
243
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
244
244
|
*/
|
|
245
|
-
timestamp?: number;
|
|
245
|
+
timestamp?: number | undefined;
|
|
246
246
|
};
|
|
247
247
|
|
|
248
248
|
type ConvertedFilters = {
|
|
@@ -266,11 +266,11 @@ type ConvertedFilters = {
|
|
|
266
266
|
/**
|
|
267
267
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
268
268
|
*/
|
|
269
|
-
authenticatedUserToken?: string;
|
|
269
|
+
authenticatedUserToken?: string | undefined;
|
|
270
270
|
/**
|
|
271
271
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
272
272
|
*/
|
|
273
|
-
timestamp?: number;
|
|
273
|
+
timestamp?: number | undefined;
|
|
274
274
|
};
|
|
275
275
|
|
|
276
276
|
/**
|
|
@@ -297,11 +297,11 @@ type ConvertedObjectIDs = {
|
|
|
297
297
|
/**
|
|
298
298
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
299
299
|
*/
|
|
300
|
-
authenticatedUserToken?: string;
|
|
300
|
+
authenticatedUserToken?: string | undefined;
|
|
301
301
|
/**
|
|
302
302
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
303
303
|
*/
|
|
304
|
-
timestamp?: number;
|
|
304
|
+
timestamp?: number | undefined;
|
|
305
305
|
};
|
|
306
306
|
|
|
307
307
|
/**
|
|
@@ -332,11 +332,11 @@ type ConvertedObjectIDsAfterSearch = {
|
|
|
332
332
|
/**
|
|
333
333
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
334
334
|
*/
|
|
335
|
-
authenticatedUserToken?: string;
|
|
335
|
+
authenticatedUserToken?: string | undefined;
|
|
336
336
|
/**
|
|
337
337
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
338
338
|
*/
|
|
339
|
-
timestamp?: number;
|
|
339
|
+
timestamp?: number | undefined;
|
|
340
340
|
};
|
|
341
341
|
|
|
342
342
|
type PurchaseEvent = 'purchase';
|
|
@@ -366,20 +366,20 @@ type PurchasedObjectIDs = {
|
|
|
366
366
|
/**
|
|
367
367
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
368
368
|
*/
|
|
369
|
-
authenticatedUserToken?: string;
|
|
369
|
+
authenticatedUserToken?: string | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* Three-letter [currency code](https://www.iso.org/iso-4217-currency-codes.html).
|
|
372
372
|
*/
|
|
373
|
-
currency?: string;
|
|
373
|
+
currency?: string | undefined;
|
|
374
374
|
/**
|
|
375
375
|
* Extra information about the records involved in a purchase or add-to-cart event. If specified, it must have the same length as `objectIDs`.
|
|
376
376
|
*/
|
|
377
|
-
objectData?: Array<ObjectData
|
|
377
|
+
objectData?: Array<ObjectData> | undefined;
|
|
378
378
|
/**
|
|
379
379
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
380
380
|
*/
|
|
381
|
-
timestamp?: number;
|
|
382
|
-
value?: Value;
|
|
381
|
+
timestamp?: number | undefined;
|
|
382
|
+
value?: Value | undefined;
|
|
383
383
|
};
|
|
384
384
|
|
|
385
385
|
/**
|
|
@@ -407,11 +407,11 @@ type PurchasedObjectIDsAfterSearch = {
|
|
|
407
407
|
/**
|
|
408
408
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
409
409
|
*/
|
|
410
|
-
authenticatedUserToken?: string;
|
|
410
|
+
authenticatedUserToken?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* Three-letter [currency code](https://www.iso.org/iso-4217-currency-codes.html).
|
|
413
413
|
*/
|
|
414
|
-
currency?: string;
|
|
414
|
+
currency?: string | undefined;
|
|
415
415
|
/**
|
|
416
416
|
* Extra information about the records involved in a purchase or add-to-cart events. If provided, it must be the same length as `objectIDs`.
|
|
417
417
|
*/
|
|
@@ -419,8 +419,8 @@ type PurchasedObjectIDsAfterSearch = {
|
|
|
419
419
|
/**
|
|
420
420
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
421
421
|
*/
|
|
422
|
-
timestamp?: number;
|
|
423
|
-
value?: Value;
|
|
422
|
+
timestamp?: number | undefined;
|
|
423
|
+
value?: Value | undefined;
|
|
424
424
|
};
|
|
425
425
|
|
|
426
426
|
type ViewEvent = 'view';
|
|
@@ -449,11 +449,11 @@ type ViewedFilters = {
|
|
|
449
449
|
/**
|
|
450
450
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
451
451
|
*/
|
|
452
|
-
authenticatedUserToken?: string;
|
|
452
|
+
authenticatedUserToken?: string | undefined;
|
|
453
453
|
/**
|
|
454
454
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
455
455
|
*/
|
|
456
|
-
timestamp?: number;
|
|
456
|
+
timestamp?: number | undefined;
|
|
457
457
|
};
|
|
458
458
|
|
|
459
459
|
/**
|
|
@@ -480,11 +480,11 @@ type ViewedObjectIDs = {
|
|
|
480
480
|
/**
|
|
481
481
|
* Identifier for authenticated users. When the user signs in, you can get an identifier from your system and send it as `authenticatedUserToken`. This lets you keep using the `userToken` from before the user signed in, while providing a reliable way to identify users across sessions. Don\'t use personally identifiable information in user tokens. For more information, see [User token](https://www.algolia.com/doc/guides/sending-events/concepts/usertoken/).
|
|
482
482
|
*/
|
|
483
|
-
authenticatedUserToken?: string;
|
|
483
|
+
authenticatedUserToken?: string | undefined;
|
|
484
484
|
/**
|
|
485
485
|
* Timestamp of the event, measured in milliseconds since the Unix epoch. By default, the Insights API uses the time it receives an event as its timestamp.
|
|
486
486
|
*/
|
|
487
|
-
timestamp?: number;
|
|
487
|
+
timestamp?: number | undefined;
|
|
488
488
|
};
|
|
489
489
|
|
|
490
490
|
type EventsItems = ClickedObjectIDsAfterSearch | AddedToCartObjectIDsAfterSearch | PurchasedObjectIDsAfterSearch | ConvertedObjectIDsAfterSearch | ClickedObjectIDs | PurchasedObjectIDs | AddedToCartObjectIDs | ConvertedObjectIDs | ClickedFilters | ConvertedFilters | ViewedObjectIDs | ViewedFilters;
|
|
@@ -509,7 +509,7 @@ type CustomDeleteProps = {
|
|
|
509
509
|
*/
|
|
510
510
|
parameters?: {
|
|
511
511
|
[key: string]: any;
|
|
512
|
-
};
|
|
512
|
+
} | undefined;
|
|
513
513
|
};
|
|
514
514
|
/**
|
|
515
515
|
* Properties for the `customGet` method.
|
|
@@ -524,7 +524,7 @@ type CustomGetProps = {
|
|
|
524
524
|
*/
|
|
525
525
|
parameters?: {
|
|
526
526
|
[key: string]: any;
|
|
527
|
-
};
|
|
527
|
+
} | undefined;
|
|
528
528
|
};
|
|
529
529
|
/**
|
|
530
530
|
* Properties for the `customPost` method.
|
|
@@ -539,11 +539,11 @@ type CustomPostProps = {
|
|
|
539
539
|
*/
|
|
540
540
|
parameters?: {
|
|
541
541
|
[key: string]: any;
|
|
542
|
-
};
|
|
542
|
+
} | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* Parameters to send with the custom request.
|
|
545
545
|
*/
|
|
546
|
-
body?: Record<string, unknown
|
|
546
|
+
body?: Record<string, unknown> | undefined;
|
|
547
547
|
};
|
|
548
548
|
/**
|
|
549
549
|
* Properties for the `customPut` method.
|
|
@@ -558,11 +558,11 @@ type CustomPutProps = {
|
|
|
558
558
|
*/
|
|
559
559
|
parameters?: {
|
|
560
560
|
[key: string]: any;
|
|
561
|
-
};
|
|
561
|
+
} | undefined;
|
|
562
562
|
/**
|
|
563
563
|
* Parameters to send with the custom request.
|
|
564
564
|
*/
|
|
565
|
-
body?: Record<string, unknown
|
|
565
|
+
body?: Record<string, unknown> | undefined;
|
|
566
566
|
};
|
|
567
567
|
/**
|
|
568
568
|
* Properties for the `deleteUserToken` method.
|
|
@@ -574,11 +574,11 @@ type DeleteUserTokenProps = {
|
|
|
574
574
|
userToken: string;
|
|
575
575
|
};
|
|
576
576
|
|
|
577
|
-
declare const apiClientVersion = "5.
|
|
577
|
+
declare const apiClientVersion = "5.28.0";
|
|
578
578
|
declare const REGIONS: readonly ["de", "us"];
|
|
579
579
|
type Region = (typeof REGIONS)[number];
|
|
580
580
|
type RegionOptions = {
|
|
581
|
-
region?: Region;
|
|
581
|
+
region?: Region | undefined;
|
|
582
582
|
};
|
|
583
583
|
declare function createInsightsClient({ appId: appIdOption, apiKey: apiKeyOption, authMode, algoliaAgents, region: regionOption, ...options }: CreateClientOptions & RegionOptions): {
|
|
584
584
|
transporter: _algolia_client_common.Transporter;
|
|
@@ -604,7 +604,7 @@ declare function createInsightsClient({ appId: appIdOption, apiKey: apiKeyOption
|
|
|
604
604
|
* @param segment - The algolia agent (user-agent) segment to add.
|
|
605
605
|
* @param version - The version of the agent.
|
|
606
606
|
*/
|
|
607
|
-
addAlgoliaAgent(segment: string, version?: string): void;
|
|
607
|
+
addAlgoliaAgent(segment: string, version?: string | undefined): void;
|
|
608
608
|
/**
|
|
609
609
|
* Helper method to switch the API key used to authenticate the requests.
|
|
610
610
|
*
|
|
@@ -673,11 +673,11 @@ declare function createInsightsClient({ appId: appIdOption, apiKey: apiKeyOption
|
|
|
673
673
|
* Error.
|
|
674
674
|
*/
|
|
675
675
|
type ErrorBase = Record<string, any> & {
|
|
676
|
-
message?: string;
|
|
676
|
+
message?: string | undefined;
|
|
677
677
|
};
|
|
678
678
|
|
|
679
679
|
type InsightsClient = ReturnType<typeof createInsightsClient>;
|
|
680
680
|
|
|
681
|
-
declare function insightsClient(appId: string, apiKey: string, region?: Region, options?: ClientOptions): InsightsClient;
|
|
681
|
+
declare function insightsClient(appId: string, apiKey: string, region?: Region | undefined, options?: ClientOptions | undefined): InsightsClient;
|
|
682
682
|
|
|
683
683
|
export { type AddToCartEvent, type AddedToCartObjectIDs, type AddedToCartObjectIDsAfterSearch, type ClickEvent, type ClickedFilters, type ClickedObjectIDs, type ClickedObjectIDsAfterSearch, type ConversionEvent, type ConvertedFilters, type ConvertedObjectIDs, type ConvertedObjectIDsAfterSearch, type CustomDeleteProps, type CustomGetProps, type CustomPostProps, type CustomPutProps, type DeleteUserTokenProps, type Discount, type ErrorBase, type EventsItems, type EventsResponse, type InsightsClient, type InsightsEvents, type ObjectData, type ObjectDataAfterSearch, type Price, type PurchaseEvent, type PurchasedObjectIDs, type PurchasedObjectIDsAfterSearch, type Region, type RegionOptions, type Value, type ViewEvent, type ViewedFilters, type ViewedObjectIDs, apiClientVersion, insightsClient };
|