@coveo/platform-client
Version:
The main goal of this package is to provide an easy to configure and straightforward way of querying Coveo Cloud APIs using JavaScript.
27 lines • 1.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MergeStrategy = exports.StatementOperation = exports.ModifierType = void 0;
var ModifierType;
(function (ModifierType) {
ModifierType["system"] = "SYSTEM";
ModifierType["license"] = "LICENSE";
ModifierType["integration"] = "INTEGRATION";
ModifierType["extension"] = "EXTENSION";
ModifierType["feature"] = "FEATURE";
})(ModifierType || (exports.ModifierType = ModifierType = {}));
var StatementOperation;
(function (StatementOperation) {
StatementOperation["set"] = "SET";
StatementOperation["append"] = "APPEND";
StatementOperation["remove"] = "REMOVE";
})(StatementOperation || (exports.StatementOperation = StatementOperation = {}));
var MergeStrategy;
(function (MergeStrategy) {
MergeStrategy["integerBiggerWins"] = "INTEGER_BIGGER_WINS";
MergeStrategy["integerLowerWins"] = "INTEGER_LOWER_WINS";
MergeStrategy["booleanFalseWins"] = "BOOLEAN_FALSE_WINS";
MergeStrategy["booleanTrueWins"] = "BOOLEAN_TRUE_WINS";
MergeStrategy["specificEnumValueWins"] = "SPECIFIC_ENUM_VALUE_WINS";
MergeStrategy["noMerge"] = "NO_MERGE";
})(MergeStrategy || (exports.MergeStrategy = MergeStrategy = {}));
//# sourceMappingURL=ModifierTemplateInterfaces.js.map