@topconsultnpm/sdk-ts 6.19.0-test2 → 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.
@@ -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
  }
@@ -4434,6 +4440,21 @@ export class WorkflowEngine extends BaseEngine {
4434
4440
  WorkItem_ReassignAsync(VID, DID, toUserID, reason) {
4435
4441
  return __awaiter(this, void 0, void 0, function* () { var _a; yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workItemReassign(VID, DID, toUserID, reason)); });
4436
4442
  }
4443
+ WFCtrl_GetWFsAsync() {
4444
+ return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workflowCtrlGetWFs()); });
4445
+ }
4446
+ WFCtrl_RetrieveAllDcmtsAsync(WFID_1) {
4447
+ return __awaiter(this, arguments, void 0, function* (WFID, outputType = 6) { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workflowCtrlRetrieveAllDcmts(WFID, outputType)); });
4448
+ }
4449
+ WFCtrl_RetrieveAllWIsAsync(WFID_1, MTID_1, MDID_1, WIInstanceID_1) {
4450
+ return __awaiter(this, arguments, void 0, function* (WFID, MTID, MDID, WIInstanceID, outputType = 6) { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workflowCtrlRetrieveAllWIs(WFID, MTID, MDID, WIInstanceID, outputType)); });
4451
+ }
4452
+ WFCtrl_EndInstanceAsync(WFID, MTID, MDID, reason) {
4453
+ return __awaiter(this, void 0, void 0, function* () { var _a; yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workflowCtrlEndInstance(WFID, MTID, MDID, reason)); });
4454
+ }
4455
+ WFCtrl_ForceWIAsync(WFID, WIDID, eventID, reason) {
4456
+ return __awaiter(this, void 0, void 0, function* () { var _a; yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.workflowCtrlForceWI(WFID, WIDID, eventID, reason)); });
4457
+ }
4437
4458
  }
4438
4459
  export class WorkingGroupEngine extends BaseEngine {
4439
4460
  CreateAsync(d) {