typesense
Version:
Javascript Library for Typesense
31 lines • 1.34 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var SynonymSets_1 = tslib_1.__importDefault(require("./SynonymSets"));
var SynonymSetItem = /** @class */ (function () {
function SynonymSetItem(synonymSetName, itemId, apiCall) {
this.synonymSetName = synonymSetName;
this.itemId = itemId;
this.apiCall = apiCall;
}
SynonymSetItem.prototype.retrieve = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
return [2 /*return*/, this.apiCall.get(this.endpointPath())];
});
});
};
SynonymSetItem.prototype.delete = function () {
return tslib_1.__awaiter(this, void 0, void 0, function () {
return tslib_1.__generator(this, function (_a) {
return [2 /*return*/, this.apiCall.delete(this.endpointPath())];
});
});
};
SynonymSetItem.prototype.endpointPath = function () {
return "".concat(SynonymSets_1.default.RESOURCEPATH, "/").concat(encodeURIComponent(this.synonymSetName), "/items/").concat(encodeURIComponent(this.itemId));
};
return SynonymSetItem;
}());
exports.default = SynonymSetItem;
//# sourceMappingURL=SynonymSetItem.js.map