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.
- package/bundles/ntk-cms-api.umd.js +12 -0
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/models/dto/sms/smsApiSendResultModel.js +1 -1
- package/esm2015/lib/service/ticketing/ticketingAnswer.service.js +13 -1
- package/fesm2015/ntk-cms-api.js +11 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/sms/smsApiSendResultModel.d.ts +8 -1
- package/lib/service/ticketing/ticketingAnswer.service.d.ts +3 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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 = [
|