@coveo/platform-client 40.0.0 → 40.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/dist/definitions/resources/HostedInterfacesCore/HostedInterfaceCoreConfig.model.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export interface HostedInterfaceResultTemplateBadge {
|
|
|
13
13
|
*/
|
|
14
14
|
color: string;
|
|
15
15
|
}
|
|
16
|
-
export declare enum
|
|
16
|
+
export declare enum HostedInterfaceConditionOperator {
|
|
17
17
|
IsDefined = "isDefined",
|
|
18
18
|
IsNotDefined = "isNotDefined",
|
|
19
19
|
MustMatch = "mustMatch",
|
|
@@ -38,7 +38,7 @@ export interface HostedInterfaceCondition {
|
|
|
38
38
|
* - `'mustMatch'`
|
|
39
39
|
* - `'mustNotMatch'`
|
|
40
40
|
*/
|
|
41
|
-
conditionType:
|
|
41
|
+
conditionType: HostedInterfaceConditionOperator;
|
|
42
42
|
}
|
|
43
43
|
export interface HostedInterfaceResultTemplateDetail {
|
|
44
44
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export var
|
|
2
|
-
(function (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
})(
|
|
1
|
+
export var HostedInterfaceConditionOperator;
|
|
2
|
+
(function (HostedInterfaceConditionOperator) {
|
|
3
|
+
HostedInterfaceConditionOperator["IsDefined"] = "isDefined";
|
|
4
|
+
HostedInterfaceConditionOperator["IsNotDefined"] = "isNotDefined";
|
|
5
|
+
HostedInterfaceConditionOperator["MustMatch"] = "mustMatch";
|
|
6
|
+
HostedInterfaceConditionOperator["MustNotMatch"] = "mustNotMatch";
|
|
7
|
+
})(HostedInterfaceConditionOperator = HostedInterfaceConditionOperator || (HostedInterfaceConditionOperator = {}));
|
|
8
8
|
//# sourceMappingURL=HostedInterfaceCoreConfig.model.js.map
|