iptdevs-design-system 3.1.377 → 3.1.378

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.
@@ -5956,6 +5956,11 @@ class AttendanceService extends IPTGeneralService {
5956
5956
  let serviceUrl = `${this.SERVICE_URL}obtain/full/data/attendance/by/code/${code}`;
5957
5957
  return this.http.get(serviceUrl);
5958
5958
  }
5959
+ UpdateIndividualAttendance(params) {
5960
+ let serviceUrl = `${this.SERVICE_URL}update/individual/attendance/by/code`;
5961
+ this.generateRequestParams(params);
5962
+ return this.http.post(serviceUrl, this.httpOptions);
5963
+ }
5959
5964
  }
5960
5965
  AttendanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
5961
5966
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });