@topconsultnpm/sdk-ts 6.19.0 → 6.20.0-dev1.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/lib/Engine.js
CHANGED
|
@@ -582,6 +582,12 @@ export class DcmtTypeEngine extends BaseEngine {
|
|
|
582
582
|
FreeSearchUpdateIndexAsync(TID, fromDID, toDID) {
|
|
583
583
|
return __awaiter(this, void 0, void 0, function* () { var _a; yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.freeSearchUpdateIndex(TID, fromDID, toDID)); });
|
|
584
584
|
}
|
|
585
|
+
FreeSearchQueueRetrieveAsync() {
|
|
586
|
+
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.freeSearchQueueRetrieve()); });
|
|
587
|
+
}
|
|
588
|
+
FreeSearchQueueDeleteEventAsync(eventID) {
|
|
589
|
+
return __awaiter(this, void 0, void 0, function* () { var _a; yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.freeSearchQueueDeleteEvent(eventID)); });
|
|
590
|
+
}
|
|
585
591
|
IndexAddAsync(TID, id) {
|
|
586
592
|
return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.indexAdd(TID, id)); });
|
|
587
593
|
}
|