@topconsultnpm/sdk-ts 6.21.0-dev2.9 → 6.21.0-dev3.3

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.
@@ -411,8 +411,10 @@ export class CaseFlowTemplateEngine extends BaseEngine {
411
411
  d.expirationDays = 0;
412
412
  if (d.warningDays === undefined)
413
413
  d.warningDays = 0;
414
- if (d.tid === undefined)
415
- d.tid = 0;
414
+ if (d.mtid === undefined)
415
+ d.mtid = 0;
416
+ if (d.witid === undefined)
417
+ d.witid = 0;
416
418
  if (d.flowMode === undefined)
417
419
  d.flowMode = CF_FlowModes.Sequential;
418
420
  return d;
@@ -420,6 +422,12 @@ export class CaseFlowTemplateEngine extends BaseEngine {
420
422
  CreateAsync(d) {
421
423
  return __awaiter(this, void 0, void 0, function* () { var _a; return yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.caseFlowTemplateCreate(d)); });
422
424
  }
425
+ RetrieveAdminAsync(id) {
426
+ return __awaiter(this, void 0, void 0, function* () { throw new Error('InvalidOperation'); });
427
+ }
428
+ RetrieveAllAdminAsync() {
429
+ return __awaiter(this, void 0, void 0, function* () { throw new Error('InvalidOperation'); });
430
+ }
423
431
  RetrieveAsync(id) {
424
432
  return __awaiter(this, void 0, void 0, function* () { var _a; return CaseFlowTemplateEngine.Normalize(yield ((_a = this.TMSClient) === null || _a === void 0 ? void 0 : _a.caseFlowTemplateRetrieve(id))); });
425
433
  }