@coveo/platform-client 48.5.1 → 49.0.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/dist/types/resources/MachineLearning/IAPRConfiguration/IAPRConfigurationInterfaces.d.ts
CHANGED
|
@@ -8,4 +8,10 @@ export interface IAPRConfigurationModel {
|
|
|
8
8
|
* The model display name in the Coveo Administration console.
|
|
9
9
|
*/
|
|
10
10
|
modelDisplayName: string;
|
|
11
|
+
/**
|
|
12
|
+
* The trackingIds that usage analytics events must contain for the model to use those events in its learning process. The model will use an event if it contains at least one of the specified IDs
|
|
13
|
+
*
|
|
14
|
+
* @Example: [ "sport" ]
|
|
15
|
+
*/
|
|
16
|
+
trackingIds: string[];
|
|
11
17
|
}
|
package/dist/types/resources/MachineLearning/PQSConfiguration/PQSConfigurationInterfaces.d.ts
CHANGED
|
@@ -37,4 +37,10 @@ export interface PQSConfigurationModel {
|
|
|
37
37
|
* The filter to apply to the 'Click' and 'Search' event dimensions of the UA data to learn from when rebuilding the model.
|
|
38
38
|
*/
|
|
39
39
|
searchEventFilter?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The trackingIds that usage analytics events must contain for the model to use those events in its learning process. The model will use an event if it contains at least one of the specified IDs
|
|
42
|
+
*
|
|
43
|
+
* @Example: [ "sport" ]
|
|
44
|
+
*/
|
|
45
|
+
trackingIds: string[];
|
|
40
46
|
}
|