iptdevs-design-system 3.1.707 → 3.1.710

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.
@@ -8035,6 +8035,11 @@ class NotesService extends IPTGeneralService {
8035
8035
  this.generateRequestParams(params);
8036
8036
  return this.http.put(serviceUrl, this.httpOptions);
8037
8037
  }
8038
+ deleteNoteByTypeAndStudent(params) {
8039
+ let serviceUrl = this.SERVICE_URL + 'delete/note/by/type/and/student';
8040
+ this.generateRequestParams(params);
8041
+ return this.http.put(serviceUrl, this.httpOptions);
8042
+ }
8038
8043
  getNotesByCourseExcel(params) {
8039
8044
  const serviceUrl = this.SERVICE_URL + 'post/notes/by/course/export';
8040
8045
  this.generateRequestParams(params);