ntk-cms-api 1.0.419 → 1.0.420

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.
@@ -8919,6 +8919,18 @@
8919
8919
  TicketingAnswerService.prototype.getModuleControllerUrl = function () {
8920
8920
  return 'TicketingAnswer';
8921
8921
  };
8922
+ TicketingAnswerService.prototype.ServiceAnswerReaded = function (id) {
8923
+ var _this = this;
8924
+ return this.http
8925
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/AnswerReaded/' + id, {
8926
+ headers: this.getHeaders(),
8927
+ })
8928
+ .pipe(operators.retry(this.configApiRetry),
8929
+ // catchError(this.handleError)
8930
+ operators.map(function (ret) {
8931
+ return _this.errorExceptionResultCheck(ret);
8932
+ }));
8933
+ };
8922
8934
  return TicketingAnswerService;
8923
8935
  }(ApiCmsServerBase));
8924
8936
  TicketingAnswerService.decorators = [